Integration · Mixpanel

Product analytics as MCP queries.

Mixpanel is the product analytics platform built around event data. The official hosted MCP lets PMs and analysts ask questions of events, funnels, retention, and cohorts via natural language.

Mixpanel's first-party hosted MCP server (public beta launched late 2025) covers events, funnels, retention curves, cohorts, session replays, annotations, and board creation. OAuth handshake is cloud-side. Pairs cleanly with code-aware agents (Claude Code, Cursor) that have access to your codebase, so the agent can correlate event names with where they fire in source. US data center only at beta; HIPAA not currently covered (BAA does not extend to MCP).

Official MCPMixpanel hosted MCP, OAuth, US-only public beta as of late 2025.

What you can do via MCP

Example prompts the agent runs.

  • Show me the conversion funnel from signup to first paid action over the last 30 days.

    Builds the funnel via the MCP with the steps named, returns the conversion rate at each step plus the time-to-convert distribution.

  • What's the 30-day retention curve for users acquired via paid Meta in February?

    Filters the user cohort by acquisition channel and acquisition date, computes retention per day for 30 days, returns the curve plus comparisons to the workspace baseline.

  • Find events with high firing volume but no defined property schema. They are probably misnamed.

    Pulls the events list with their firing volume and property-schema-presence flag, returns events that fire often but lack a schema. Pairs well with code-aware agents that can grep the codebase for the event-name calls.

  • Compare daily active users by acquisition channel for Q1 vs Q4.

    Pulls DAU segmented by acquisition channel for both quarters, returns the side-by-side comparison with statistical significance bands.

  • Create an annotation marking the v3.2 release on the daily-active-users board.

    Adds the annotation via the MCP, returns confirmation with the annotation ID. Future viewers of the board will see the v3.2 marker on the timeline.

Mixpanel · MCP

Funnel query via the Mixpanel hosted MCP. The agent specifies the steps; Mixpanel returns conversion rates and time-to-convert.

Mixpanel MCP
docs
# Mixpanel MCP, called via the agent runtime
mcp.mixpanel.query_funnel({
  steps: [
    { event: "signup_completed" },
    { event: "trial_started" },
    { event: "first_paid_action" }
  ],
  date_range: { start: "2026-04-01", end: "2026-04-30" },
  segment_by: "acquisition_channel"
})

# Returns conversion rate at each step, time-to-convert
# distribution, and per-segment breakdown.
One command sample showing how the agent talks to Mixpanel. The MCP exposes the platform's primitives as tools; the agent translates the prompt into the right call.

MCP integration

Mixpanel MCP server.

Server
https://mcp.mixpanel.com/mcp
Auth
OAuth (handled by Mixpanel)
Hosting
Mixpanel hosted (Streamable HTTP)
Scoping note
US data center only as of public beta. HIPAA-covered workspaces should not use the MCP yet; the BAA does not currently extend to MCP traffic.
  • Events, funnels, retention curves, cohorts, session replays, annotations, board creation
  • Property schema discovery to find misnamed and orphan events
  • Pair with Claude Code or Cursor for codebase-aware event analysis (find where each event fires)
  • Annotation creation lets the agent mark releases or campaign launches on dashboards

Mixpanel MCP docs

Visual demonstration

What this looks like in practice.

Mixpanel· DashboardLast 30 days
Q4 product activation board
  • Daily active users

    184,200

    +8.2%vs last 30d
  • Signup-to-paid (7d)

    12.4%

    +1.6%vs last 30d
  • 30-day retention

    47.2%

    -1.8%vs last 30d
  • Activation rate (D7)

    62.1%

    +4.4%vs last 30d
  • Avg session length

    8m 42s

    flatvs last 30d
  • Events per active user

    31.4

    +3.1%vs last 30d
The product activation board the agent assembled from MCP queries. Six metrics with sparklines. The 30-day retention dip is the kind of signal the agent surfaces for follow-up cohort analysis.

CLI alternative

Mixpanel REST API for non-MCP workflows.

Mixpanel exposes a comprehensive REST API for non-MCP workflows. For AI-driven analytics work the official hosted MCP is the primary interface; the REST API fills in for batch exports, ETL pipelines, and HIPAA-covered workspaces (where the MCP BAA does not currently extend).

Pairs with these skills

The PM data and analytics skill suite.

This integration pairs with the forthcoming product-analytics-setup, feature-launch-playbook skills. The skill landing pages and SKILL.md sources land in subsequent dispatches; cross-link hyperlinks are added when the skill pages ship.