Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions changelogs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,23 @@ Get all the latest updates in your inbox.

<SubscribeButtonWithModal />

<Update label="2026-07-29">
## Mixpanel plugin for Claude Code: MCP connection and skills in one install

Claude Code users can now set up Mixpanel with a single plugin install. The plugin configures the [Mixpanel MCP server](/docs/mcp) connection automatically and adds 11 skills — guided workflows for tracking implementation, metric investigation, dashboard creation, experiments, feature flags, and Lexicon management.

```bash
claude plugin marketplace add mixpanel/ai-plugins
claude plugin install mixpanel-mcp
```

Regional variants are available for EU (`mixpanel-mcp-eu`) and India (`mixpanel-mcp-in`) data residency. The skills are open source at [github.com/mixpanel/ai-plugins](https://github.com/mixpanel/ai-plugins).

[Learn more →](/docs/mcp#claude-code-plugin)

**Note:** Available to all plans. An organization admin must have MCP enabled in **Settings → Org → Overview**.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Preserve default-enablement exception

The note says every organization requires an admin to enable MCP, but new free and growth accounts created after August 1, 2026 have MCP enabled by default. This sends those users through an unnecessary admin step; align the note with the Permissions & Access section.

Suggested change
**Note:** Available to all plans. An organization admin must have MCP enabled in **Settings → Org → Overview**.
**Note:** Available to all plans. MCP is enabled by default for new free and growth accounts created after August 1, 2026; for other accounts, an organization admin must enable it in **Settings → Org → Overview**.

Knowledge Base Used: MCP and AI Integrations

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

</Update>

<Update label="2026-07-28">
## AI-Powered Data Governance: merge suggestions for duplicate events and properties

Expand Down
43 changes: 43 additions & 0 deletions docs/mcp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@ claude mcp add --transport http mixpanel https://mcp.mixpanel.com/mcp

Then authenticate by running `/mcp` inside Claude Code and completing the Mixpanel OAuth flow in your browser.

<Tip>
The [Mixpanel plugin for Claude Code](#claude-code-plugin) sets up this connection automatically and adds skills — guided workflows for tracking implementation, metric investigation, dashboards, and experiments.
</Tip>

### ChatGPT

[Add Mixpanel to ChatGPT](https://chatgpt.com/apps/mixpanel/asdk_app_69b2e9aed45c8191b254b207dfcc2bb4) and complete the Mixpanel OAuth flow.
Expand Down Expand Up @@ -383,6 +387,45 @@ Or edit `~/.gemini/settings.json` manually and add (use the EU or IN URL if need

Any client that supports the MCP JSON config format, including Microsoft Copilot, can connect using the same JSON snippet from the Cursor section above — adding the `headers` object with the [authorization header](#generating-the-authorization-header).

## Claude Code Plugin

The [Mixpanel plugin for Claude Code](https://github.com/mixpanel/ai-plugins) bundles the MCP server connection with a set of skills — guided workflows for the analytics work Mixpanel customers do most. Installing the plugin configures the MCP connection automatically; you authenticate with the Mixpanel OAuth flow the first time Claude uses a Mixpanel tool.

**Add the Mixpanel marketplace**, then install the plugin for your region:

```bash
claude plugin marketplace add mixpanel/ai-plugins

# US
claude plugin install mixpanel-mcp

# EU
claude plugin install mixpanel-mcp-eu

# India
claude plugin install mixpanel-mcp-in
```

### Included Skills

Claude invokes skills automatically based on your request, or you can invoke one directly with `/skill-name` (for example, `/deep-research`).

| Skill | What It Does |
| --- | --- |
| `analyze-report` | Reads and explains an existing report or chart — what it shows and what's notable |
| `create-dashboard` | Builds a well-designed dashboard with validated reports, text cards, and narrative layout |
| `deep-research` | Runs a structured root-cause investigation into why a metric changed |
| `learn-mcp` | Onboards you to the MCP server through guided, interactive modules |
| `manage-boards` | Full dashboard lifecycle: create, template, clone, inventory, and clean up boards |
| `manage-experiment` | Coaches you through experiment design, launch, mid-flight monitoring, and interpretation |
| `manage-feature-flags` | Creates, rolls out, debugs, and cleans up feature flags |
| `manage-lexicon` | Audits, scores, enriches, and cleans up Lexicon metadata |
| `monitor-metrics` | Detects anomalies and drift in a metric and diagnoses root cause |
| `prepare-ai-readiness` | Sets up business context and Lexicon metadata so Mixpanel's AI assistants understand your data |
| `tracking-implementation` | Guides an analytics implementation: quick start, full setup, adding tracking, or an audit |

The plugin's skills are open source at [github.com/mixpanel/ai-plugins](https://github.com/mixpanel/ai-plugins). The same [Permissions & Access](#permissions--access) rules apply — MCP must be enabled for your organization, and Claude can only see projects your Mixpanel user can access.

## Example Queries

Once connected, try asking your AI assistant:
Expand Down