Amplitude
live UtilityAmplitude MCP Pack
5 tools
0ms auth
free tier 50 calls/day
Tools
amp_get_events Get event segmentation data from Amplitude for a date range. Returns event counts and breakdowns.
No parameters required.
Try it
Response
amp_get_active_users Get daily/weekly/monthly active user counts for a date range.
No parameters required.
Try it
Response
amp_get_retention Get retention data for a date range. Shows how many users return over time.
No parameters required.
Try it
Response
amp_user_search Search for a user by user property or user ID. Returns matching Amplitude user profiles.
No parameters required.
Try it
Response
amp_get_user_activity Get recent event activity for a specific user by their Amplitude ID.
No parameters required.
Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/amplitude/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/amplitude/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"amp_get_events","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("amp_get_events", {}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("amplitude mcp pack");