get_funnels
Pack: mixpanel · Endpoint: https://gateway.pipeworx.io/mixpanel/mcp
Get funnel conversion data from Mixpanel. Shows step-by-step conversion rates. Example: get_funnels({ funnel_id: “12345”, from_date: “2024-01-01”, to_date: “2024-01-31”, _apiKey: “your_api_secret” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
funnel_id | string | yes | Mixpanel funnel ID (numeric string) |
from_date | string | yes | Start date in YYYY-MM-DD format |
to_date | string | yes | End date in YYYY-MM-DD format |
_apiKey | string | yes | Mixpanel API secret (used for Basic auth) |
Example call
Arguments
{
"funnel_id": "12345",
"from_date": "2024-01-01",
"to_date": "2024-01-31",
"_apiKey": "your-mixpanel-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/mixpanel/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_funnels","arguments":{"funnel_id":"12345","from_date":"2024-01-01","to_date":"2024-01-31","_apiKey":"your-mixpanel-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_funnels', {
"funnel_id": "12345",
"from_date": "2024-01-01",
"to_date": "2024-01-31",
"_apiKey": "your-mixpanel-api-key"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Funnel conversion data from Mixpanel"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"mixpanel": {
"url": "https://gateway.pipeworx.io/mixpanel/mcp"
}
}
}
See Getting Started for client-specific install steps.