MCP Packs
Data Analyst Pack
Query your stack and visualize quickly using analytics and BI MCP servers.
Data Analyst Pack
Instrument questions and get answers in one workflow. Connect analytics platforms, data warehouses, and BI tools to streamline your analysis.
Recommended Servers
| Server | Purpose |
|---|---|
| Mixpanel MCP | Cohorts, retention, events |
| PostHog MCP | Product analytics, feature flags |
| Lightdash MCP | Explores on top of dbt models |
| Snowflake MCP | Query data warehouse (official Snowflake Labs) |
| BigQuery MCP | Community connector for Google BigQuery |
Example Configuration
{
"mcpServers": {
"mixpanel": {
"command": "npx",
"args": ["-y", "@mixpanel/mcp-server"],
"env": { "MIXPANEL_TOKEN": "${MIXPANEL_TOKEN}" }
},
"posthog": {
"command": "npx",
"args": ["-y", "@posthog/mcp-server"],
"env": { "POSTHOG_API_KEY": "${POSTHOG_API_KEY}" }
},
"snowflake": {
"command": "npx",
"args": ["-y", "@snowflake/mcp-server"],
"env": {
"SNOWFLAKE_ACCOUNT": "${SNOWFLAKE_ACCOUNT}",
"SNOWFLAKE_USER": "${SNOWFLAKE_USER}",
"SNOWFLAKE_PASSWORD": "${SNOWFLAKE_PASSWORD}"
}
}
}
}Common Workflows
- Pull a cohort from Mixpanel, compare PostHog funnel steps, and materialize a Lightdash chart
- Query Snowflake for raw data, analyze in context, and document findings
- Compare metrics across platforms to validate data consistency
Safety First
Use read-only database credentials. Avoid exposing PII in query results. Limit query scope to specific schemas or tables.