Check out our free Chrome Extension.

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. Claude Desktop and ChatGPT Desktop authenticate through your browser. Other clients may require 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. Simply configure your AI client to connect and authenticate.

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

  1. Open Settings in the Claude Desktop app.
    Claude Desktop Settings menu
    Open Settings in Claude Desktop.
  2. Select Connectors from the left menu.
    Connectors in Claude Desktop settings
    Select Connectors from the left menu.
  3. In the top-right corner, select Add, then Add custom connector.
    Add custom connector menu in Claude Desktop
    Select Add custom connector.
  4. Enter Store Leads for the name and https://storeleads.app/mcp for the remote MCP URL.
    Store Leads custom connector details in Claude Desktop
    Enter the Store Leads connector details.
  5. Select Connect, then follow the sign-in and approval steps in the browser window that opens.
    Connect Store Leads in Claude Desktop
    Connect and authenticate with Store Leads.

ChatGPT Desktop

In the ChatGPT Desktop app, open Settings, then select Plugins. Open the Add menu and select Add MCP server.

Add MCP server menu in ChatGPT Desktop
Select Add MCP server from the Add menu.
  1. Select MCP, then choose Streamable HTTP.
    Custom MCP server form in ChatGPT Desktop
    Choose Streamable HTTP in the custom MCP form.
  2. Enter Store Leads for the name and https://storeleads.app/mcp for the server URL.
    Store Leads MCP server details in ChatGPT Desktop
    Enter the Store Leads MCP server details.
  3. Select Save.
  4. Select Authenticate, then follow the sign-in and approval steps in the browser window that opens.
    Authenticate Store Leads MCP server in ChatGPT Desktop
    Authenticate the Store Leads MCP server.

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:

search_domains
Search and filter e-commerce store domains by country, category, technology, app, theme, revenue, product count, rank, and more.
get_domain
Look up a single domain by name. Returns platform, plan, revenue estimate, apps, technologies, contact info, social stats, and more.
bulk_get_domains
Fetch up to 100 domains in a single request.
company_to_domain
Map a company name to its e-commerce domain.
detect_domain
Detect what e-commerce platform a domain is using.
search_apps
Search e-commerce apps across app stores (Shopify, BigCommerce, etc.). Filter by category, vendor, install count, and more.
get_app
Look up a single app by its token/slug. Returns installs, reviews, rating, vendor info, and more.
get_app_reviews
Get reviews for a specific app.
search_technologies
Search technologies used by e-commerce stores. Filter by install count.
get_technology
Look up a single technology by name. Returns install count, description, categories, and vendor info.
get_products_for_domain
Get products listed on an e-commerce store domain.

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"

Privacy & Security

All MCP requests use HTTPS. Your API key is passed as a Bearer token and is required on every request. The MCP server is read-only — it can search and retrieve data but cannot modify anything in your account. See our Privacy Policy for details on how we handle data.

Support

Need help setting up or using the MCP server? Contact support and we'll be happy to help. For more details about the underlying API, see the API Reference.