Mixpanel MCP server. Query Mixpanel events, funnels, retention, segmentation and insights (JQL).
Add to your MCP config, then reload & authorize:
{
"mcpServers": {
"mixpanel": {
"url": "https://mixpanel.usefulapi.io/mcp"
}
}
}| Tool | Type | What it does |
|---|---|---|
mixpanel_top_events | read | 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_segmentation | read | 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_retention | read | 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_funnels | read | List saved funnels Get the funnel_id and name of every saved funnel in the project. Query API: GET /funnels/list. |
mixpanel_query_funnel | read | 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_insights | read | 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_jql | read | 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_status | 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_upgrade | 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. |
| Plan | Price | Limit |
|---|---|---|
| Free | $0 | 100 tool calls / month |
| Pro | $9/mo · $90/yr | Unlimited |
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.