Connect in 2 minutes

Add MCP Analytics to Claude Desktop, Cursor, or any MCP client. Upload a CSV, ask a question, get an interactive report.

Prerequisite: Free account at app.mcpanalytics.ai
Setup

Three steps to your first analysis

1

Get your API key

Sign up at app.mcpanalytics.ai, go to account settings, and click Reveal API Key. Copy the key — it starts with mcp_.

You get 2,000 free credits on signup — enough for ~15 reports. No credit card required.

2

Pick a connection method

Choose the option that fits your setup. All three connect to the same platform with the same tools.

Option B: Direct API key

No npm needed. Your MCP client connects directly to our API via HTTP. Requires a client that supports custom headers on Streamable HTTP transport.

// Claude Desktop config

{
  "mcpServers": {
    "mcpanalytics": {
      "url": "https://api.mcpanalytics.ai/mcp/api-key",
      "headers": {
        "X-API-Key": "mcp_your_key_here"
      }
    }
  }
}

Option C: OAuth2 (no API key)

Zero-config authentication. A browser window opens for login on first connection. No API key to manage. Works if your client supports MCP OAuth2.

// Claude Desktop config

{
  "mcpServers": {
    "mcpanalytics": {
      "url": "https://api.mcpanalytics.ai/auth0"
    }
  }
}

Browse tools first (no account needed)

Explore the full tool catalog before signing up. Public discovery endpoint — no authentication required. See every analysis available.

# Browse the tool catalog
curl -s https://api.mcpanalytics.ai/.well-known/mcp.json | jq '.tools'

# Or via MCP protocol (for MCP clients)
POST https://api.mcpanalytics.ai/mcp/discover
{"jsonrpc":"2.0","method":"tools/list","id":1,"params":{}}
3

Restart and analyze

Restart your MCP client. MCP Analytics is now available as a tool. Try one of these to get started:

Try saying:

  • "Upload sales.csv and find which products drive the most revenue"
  • "What statistical test should I use for this survey data?"
  • "Run customer segmentation on my Shopify export"
  • "Forecast next quarter's revenue from this time series"
Resources

Go deeper

Ready to start?

Free account. 2,000 credits. No credit card.

Create free account View on GitHub