mixpanel mcp for VS Code
io.github.mrfentmen/mixpanel-mcp
Query Mixpanel events, funnels, retention, cohorts, and user profiles.
client:VS Code
transport:stdio
runtime:npm
Install mixpanel mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mixpanel-token",
"description": "MIXPANEL_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "mixpanel-api-secret",
"description": "MIXPANEL_API_SECRET",
"password": true
}
],
"servers": {
"mixpanel-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@mrfentmen/mixpanel-mcp"
],
"env": {
"MIXPANEL_TOKEN": "${input:mixpanel-token}",
"MIXPANEL_API_SECRET": "${input:mixpanel-api-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs