Skip to main content

StoreSignal MCP Server

mcp-name: io.github.anthesiallc/storesignal

A Model Context Protocol server that exposes the StoreSignal API as tools, so any MCP client (Claude Desktop, Cursor, ChatGPT connectors, or an agent framework) can analyze Shopify stores and run market intelligence queries conversationally.

It's a thin wrapper: each tool maps to one StoreSignal REST endpoint. All the data work happens in the API.

Tools

Tool What it does
analyze_store Full structured profile for a Shopify store URL (apps, CDN, security headers, schema.org, classification, revenue estimate)
compare_stores Side-by-side comparison of 2-5 stores (shared apps, exclusive apps, tier)
find_stores_using_app Paginated list of every analyzed store running a specific app
list_apps All 278 apps in the catalog, optionally filtered by category
app_adoption Top apps by adoption % across the corpus, optionally filtered by category
app_vs_app Head-to-head: install counts, overlap, co-install rate, bidirectional cross-adoption
industry_overview Per-vertical stats: store count, median price, top countries, top apps, tier mix
store_census Whole-corpus stats (19,647 stores, 20 industries, app/tier/type breakdowns)
get_usage Current billing period usage and plan limit

Get an API key

Free tier is 250 calls/month, no credit card:

curl -X POST https://storesignal.anthesia.io/api/v1/signup \
  -H 'Content-Type: application/json' \
  -d '{"email":"you@example.com"}'

The key comes back in the api_key field of the response.

Install and run

The easiest way is with uv (no manual venv needed):

# stdio transport (default — for Claude Desktop, Cursor, most local clients)
STORESIGNAL_API_KEY=ss_your_key uvx storesignal-mcp

# streamable-HTTP transport (for remote / web clients)
STORESIGNAL_API_KEY=ss_your_key uvx storesignal-mcp --http

Or install with pip into its own environment:

pip install storesignal-mcp
STORESIGNAL_API_KEY=ss_your_key storesignal-mcp

Note: install into a dedicated environment. The mcp SDK requires a newer starlette than the StoreSignal API app pins, so the two will conflict if installed together.

Environment variables:

  • STORESIGNAL_API_KEY (required) — your StoreSignal API key.
  • STORESIGNAL_BASE_URL (optional) — defaults to https://storesignal.anthesia.io.
  • STORESIGNAL_TIMEOUT (optional) — request timeout in seconds, default 60.

Client configuration

Claude Desktop

Add to claude_desktop_config.json (Settings → Developer → Edit Config):

{
  "mcpServers": {
    "storesignal": {
      "command": "uvx",
      "args": ["storesignal-mcp"],
      "env": { "STORESIGNAL_API_KEY": "ss_your_key" }
    }
  }
}

Cursor

Add the same block to ~/.cursor/mcp.json (or the project .cursor/mcp.json).

Smithery (hosted, no install)

The server is hosted on Smithery, so MCP clients that support Smithery can connect without installing anything. You provide your StoreSignal API key in the Smithery config and it routes to the server.

LangChain / LangGraph

Any LangChain or LangGraph agent can use these tools through langchain-mcp-adapters:

# pip install langchain-mcp-adapters langgraph "langchain[anthropic]"
from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient(
    {
        "storesignal": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["storesignal-mcp"],
            "env": {"STORESIGNAL_API_KEY": "ss_your_key"},
        }
    }
)
tools = await client.get_tools()
# hand `tools` to a LangGraph/LangChain agent, e.g.
# from langgraph.prebuilt import create_react_agent
# agent = create_react_agent("anthropic:claude-opus-4-8", tools)

LlamaIndex works the same way via its MCP tool spec.

Example agent conversations

"What apps does Allbirds use?" → analyze_store("https://www.allbirds.com")

"Compare the tech stacks of Brooklinen and Bombas." → compare_stores(["https://brooklinen.com", "https://bombas.com"])

"Which Shopify stores are running Judge.me?" → find_stores_using_app("judge-me")

"What are the top email-marketing apps on Shopify?" → app_adoption(category="Email Marketing")

"Compare Klaviyo to Omnisend." → app_vs_app("klaviyo", "omnisend")

"Tell me about the Beauty vertical." → industry_overview("Beauty")

Develop from source

git clone https://github.com/anthesiallc/storesignal-mcp && cd storesignal-mcp
python -m venv .venv
.venv/Scripts/python -m pip install -e ".[http]"   # Windows; [http] adds uvicorn for --http
# .venv/bin/pip install -e ".[http]"                # macOS/Linux
STORESIGNAL_API_KEY=ss_your_key .venv/Scripts/python -m storesignal_mcp.server

Notes

  • Data is extracted only from publicly accessible Shopify storefront endpoints.
  • Not affiliated with Shopify Inc.
  • The LLM-classification endpoints (industry / store type / growth stage) are intentionally not exposed as MCP tools. The agent calling MCP is already an LLM and can reason about the raw corpus data itself — exposing them would waste tokens on a round trip to OpenAI.

Release files for storesignal-mcp 0.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for storesignal-mcp 0.1.0
File Size Uploaded
storesignal_mcp-0.1.0.tar.gz 12.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for storesignal-mcp 0.1.0
File Interpreter ABI Platform
storesignal_mcp-0.1.0-py3-none-any.whl Python 3 none any Details

Total release size: 24.1 kB

Release files / storesignal_mcp-0.1.0.tar.gz

Download URL storesignal_mcp-0.1.0.tar.gz
Size 12.2 kB
Tags Source
SHA-256 checksum
How to use checksums
d00e86f4dac8b1613d117d7ed4b2fc3d2811fef719860a460ed2f20482bb1ecc
BLAKE2b-256 checksum
How to use checksums
2bae7f9e11c3f96f6e73604e087f0aea6655e3466a099aa9f195ed30d9562db0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / storesignal_mcp-0.1.0-py3-none-any.whl

Download URL storesignal_mcp-0.1.0-py3-none-any.whl
Size 11.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
31779cbca824055dd668f0c5b98c5d3765d7f048fa5baec707630d1537f82853
BLAKE2b-256 checksum
How to use checksums
e54340da7464bc8e551aadbddbc3c580c2c554b09347f3748245cc757b4e4e07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release history Release notifications | RSS feed

This release

0.1.0 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page