MCP Server
Overview
The Store Leads MCP server allows AI assistants to access Store Leads data directly through the Model Context Protocol (MCP). Once connected, you can ask your AI assistant questions about e-commerce stores and it will query Store Leads data to provide answers.
The MCP server is available to all customers with API access. You'll need a Store Leads API key, which you can find on your Account page.
Setup
The Store Leads MCP server is a remote server hosted at https://storeleads.app/mcp. No installation is required — simply configure your AI client to connect to the server with your API key.
Claude Code (CLI)
Run the following command in your terminal, replacing YOUR_API_KEY with your Store Leads API key:
claude mcp add -t http storeleads https://storeleads.app/mcp -H "Authorization: Bearer YOUR_API_KEY"
You can verify the server was added by running claude mcp list.
For more details, see the Claude Code MCP documentation.
Claude Desktop
Open your Claude Desktop settings and add the following to your MCP server configuration. For step-by-step instructions, see the MCP quickstart guide for Claude Desktop.
{
"mcpServers": {
"storeleads": {
"type": "streamable-http",
"url": "https://storeleads.app/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Cursor
In Cursor, open Settings and navigate to the MCP section. Add a new server with the following configuration. For step-by-step instructions, see the Cursor MCP documentation.
{
"mcpServers": {
"storeleads": {
"type": "streamable-http",
"url": "https://storeleads.app/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Available Tools
The MCP server provides the following tools that AI assistants can use to query Store Leads data:
Example Prompts
Once connected, you can ask your AI assistant questions like:
- "Find the top 10 Shopify Plus stores in the US by estimated revenue"
- "What apps does fashionnova.com use?"
- "Search for stores that use Klaviyo and have more than 1000 products"
- "What platform is allbirds.com using?"
- "Show me the most popular Shopify apps in the email marketing category"
- "Compare the technology stacks of gymshark.com and fashionnova.com"
- "Find Shopify stores in the apparel category that were created in the last 6 months"
For more details about the Store Leads API, see the API Reference.
Store Leads