Plugins that give AI agents Mixpanel expertise. Built on the Agent Skills open standard.
| Skill | Description |
|---|---|
tracking-implementation |
Guides an agent through Mixpanel analytics implementation. Supports Quick Start, Full Implementation, Add Tracking, and Audit modes. |
create-dashboard |
Creates a well-designed Mixpanel dashboard with validated data, text cards, and narrative layout. |
deep-research |
Conducts a structured metric investigation in Mixpanel. Use when a user asks why a metric changed, what's driving a trend, or requests a deep dive or root cause analysis. |
- Add the Mixpanel marketplace, then install the plugin for your region:
claude plugin marketplace add mixpanel/ai-plugins- Install the plugin for your region:
US
claude plugin install mixpanel-mcpEU
claude plugin install mixpanel-mcp-euIndia
claude plugin install mixpanel-mcp-inInstall the plugin from the Cursor marketplace, or have a team admin import this GitHub repository as a team marketplace (Dashboard → Settings → Plugins → Import).
Once installed, skills appear in Cursor Settings → Rules under the Agent Decides section and can be invoked with /skill-name in chat. The MCP server connects automatically.
To propose a plugin, open a pull request — we prefer one plugin per PR so reviews stay focused, and we'll merge them as they're ready rather than batching.
After cloning, enable the git hooks:
make setupThis configures a pre-commit hook that prevents committing changes to mixpanel-mcp-eu or mixpanel-mcp-in skills without also changing the mixpanel-mcp source.
The mixpanel-mcp plugin is the source of truth for skills. The mixpanel-mcp-eu and mixpanel-mcp-in plugins contain copies that must stay in sync.
Always edit skills in plugins/mixpanel-mcp/skills/, then run:
make sync-skillsThis copies the skills to mixpanel-mcp-eu and mixpanel-mcp-in. If they already have local changes, the command will warn you and refuse — run make sync-skills FORCE=1 to override.
CI will fail if the skills are out of sync.
- Each skill lives in its own directory under
skills/and must contain aSKILL.mdwith validnameanddescriptionfrontmatter. - Follow the Agent Skills specification and best practices.
- Keep the main file under 500 lines — move detailed reference material to
references/. - Test the plugin end-to-end before submission — confirm it triggers on the expected prompts and produces the output you expect.
- Include examples in the PR description showing prompts the plugin handles and what it returns.
- Run
make sync-skillsto ensuremixpanel-mcp-euandmixpanel-mcp-inare up to date.
Apache 2.0 — see LICENSE.