usefulapi

Mixpanel MCP server. Query Mixpanel events, funnels, retention, segmentation and insights (JQL).

Claude

  1. Open Settings → Connectors → Add custom connector
  2. Paste this URL:
    https://mixpanel.usefulapi.io/mcp
  3. Authenticate with Mixpanel when prompted

Cursor · VS Code · Windsurf · Cline

Add to your MCP config, then reload & authorize:

{
  "mcpServers": {
    "mixpanel": {
      "url": "https://mixpanel.usefulapi.io/mcp"
    }
  }
}
live9 toolsFree 100 tool calls / monthPro $9/mo · $90/yr

Tools 9

ToolTypeWhat it does
mixpanel_top_eventsread
Top events (today)
List today's top events with counts and % change vs yesterday. Good first call to discover what events a project tracks. Query API: GET /events/top.
mixpanel_segmentationread
Segment an event
Count/segment/filter a single event over a date range. e.g. 'Signed up' by country last week. Params `on`/`where` use Mixpanel segmentation expressions like properties[\
mixpanel_retentionread
Retention report
Cohort retention: of users who did `born_event`, how many came back and did `event` over subsequent intervals. Query API: GET /retention.
mixpanel_list_funnelsread
List saved funnels
Get the funnel_id and name of every saved funnel in the project. Query API: GET /funnels/list.
mixpanel_query_funnelread
Query a saved funnel
Get conversion data for a saved funnel (use mixpanel_list_funnels to find funnel_id). Query API: GET /funnels.
mixpanel_query_insightsread
Query a saved Insights report
Fetch the computed data behind a saved Insights report by bookmark_id (the report id in the board URL). Mixpanel's recommended, non-deprecated path for programmatic reporting. Query API: GET /insights.
mixpanel_jqlread
Run a JQL query
Run a custom JQL (JavaScript Query Language) script for arbitrary analysis. Power-user escape hatch. Script must define main(). Query API: POST /jql. (Upstream maintenance mode; 2-min timeout, 5GB/query limit.)
mixpanel_usage_statusmeta
Usage status (free-tier meter)
Report the caller's current free-tier usage this month: calls used, monthly limit, remaining, and whether the cap is reached. Read-only; does not count against the meter.
mixpanel_upgrademeta
Upgrade to Pro (unlimited)
Subscribe to the Pro plan for UNLIMITED Mixpanel tool calls (the free tier caps monthly usage). Choose monthly ($9/month) or yearly ($90/year — 2 months free) billing. Returns a Stripe Checkout link to open in your browser; after payment your account upgrades automatically. Read-only; does not count against the meter.

Pricing

PlanPriceLimit
Free$0100 tool calls / month
Pro$9/mo · $90/yrUnlimited

This is a Model Context Protocol endpoint — meant to be connected from an AI client, not opened in a browser. An invalid_token response at the URL is the auth gate working as designed; clients authenticate automatically.