Aerostack
electrical_services

Amplitude MCP Server — Hosted Monitoring Integration

MCP Server language Hosted language Public

Query product analytics, build audience cohorts, and surface funnel insights from Amplitude with AI-powered analysis.

aerostack @aerostack verified
v0.1.0 MIT Updated Jun 28, 2026
robot_2

Use with AI AssistantsMCP

Connect Claude, Cursor, or any MCP-compatible client — then call tools directly

① Add This MCP Server

Paste into your AI client config — then all its tools are available instantly.

.claude/mcp.json
{
  "mcpServers": {
    "amplitude": {
      "url": "https://mcp.aerostack.dev/s/aerostack/mcp-amplitude",
      "headers": {
        "Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
      }
    }
  }
}

Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.

② Call a Tool

Ask your AI assistant to call a specific tool, or send raw JSON-RPC:

+3 more

Natural Language Prompt

“Use the _ping tool to verify amplitude credentials by calling a lightweight read endpoint. used internally by aerostack to validate credentials

Using a Workspace?

Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.

add_circleAdd to Workspace

description Overview

mcp-amplitude — Amplitude MCP Server

Track events, analyze funnels, and query user cohorts from your AI agents.

Amplitude is the product analytics platform used by thousands of teams to understand user behavior, measure retention, and run growth experiments. This MCP server lets your AI agents send events directly into Amplitude and query charts, funnels, and cohort data — turning your analytics platform into a live data source for agent reasoning.

Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-amplitude


What You Can Do

  • Track product events and user properties from automated workflows without touching your frontend tracking code
  • Pull funnel conversion data for any event sequence and any date range — ask "what's our signup-to-activation conversion this week?"
  • Fetch cohort membership to target specific user groups in downstream actions (emails, notifications, etc.)
  • Analyze daily/weekly event trends via segmentation charts to drive agent-generated product reports

Available Tools

Tool Description
track_event Track a custom event in Amplitude for a specific user
identify_user Identify a user and set their properties in Amplitude
get_user_activity Get recent event activity for a specific user
list_cohorts List all cohorts defined in the Amplitude project
get_cohort_members Get member user IDs for a specific cohort
get_chart_data Get event segmentation chart data for an event and date range
get_funnel_data Get funnel conversion data for a sequence of events
export_events Initiate a raw event export from Amplitude for a date range

Configuration

Variable Required Description How to Get
AMPLITUDE_API_KEY Yes Project API key (used for event ingestion) app.amplitude.com → Your Project → SettingsGeneral → copy API Key
AMPLITUDE_SECRET_KEY Yes Secret key (used for query API authentication) Same page as API Key → copy Secret Key

Quick Start

Add to Aerostack Workspace
  1. Go to aerostack.dev → Your Project → MCPs
  2. Search for "Amplitude" and click Add to Workspace
  3. Add AMPLITUDE_API_KEY and AMPLITUDE_SECRET_KEY under Project → Secrets

Once added, every AI agent in your workspace can call Amplitude tools automatically — no per-user setup needed.

Example Prompts
"What's our signup-to-purchase funnel conversion for the last 30 days?"
"Track a 'plan_upgraded' event for user u_98765 with property plan: enterprise"
"Show me daily active users for the 'dashboard_viewed' event this week"
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-amplitude \
  -H 'Content-Type: application/json' \
  -H 'X-Mcp-Secret-AMPLITUDE-API-KEY: your-api-key' \
  -H 'X-Mcp-Secret-AMPLITUDE-SECRET-KEY: your-secret-key' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_cohorts","arguments":{}}}'

License

MIT

terminal Tools (9)

Available tools on this MCP server. Each tool can be called directly from any AI agent.

terminal
_ping #1

Verify Amplitude credentials by calling a lightweight read endpoint. Used internally by Aerostack to validate credentials.

terminal
track_event #2

Track a custom event in Amplitude for a specific user

terminal
identify_user #3

Identify a user and set their properties in Amplitude

terminal
get_user_activity #4

Get recent event activity for a specific user

terminal
list_cohorts #5

List all cohorts defined in the Amplitude project

terminal
get_cohort_members #6

Get member user IDs for a specific cohort

terminal
get_chart_data #7

Get event segmentation chart data for a specific event and date range

terminal
get_funnel_data #8

Get funnel conversion data for a sequence of events

terminal
export_events #9

Initiate a raw event export from Amplitude for a date range

Details

upgrade Version 0.1.0
gavel License MIT
wifi Transport streamable-http
lock Access Public
category Category Monitoring
terminal Tools 9

language Live Endpoint

https://mcp.aerostack.dev/s/aerostack/mcp-amplitude

Sub-50ms globally · Zero cold start

Publisher

aerostack
@aerostack verified

Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.

Tags

Browse more servers

More in Monitoring

Browse Monitoring MCPs →

Frequently asked questions

What is the Amplitude MCP server and what can it do? +

The Amplitude MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `track_event`, `identify_user`, `get_user_activity`, `list_cohorts`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.

Is the Amplitude MCP server hosted, or do I have to run it myself? +

It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.

Which AI agents and editors can use the Amplitude MCP server? +

Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Amplitude MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.

How do I install the Amplitude MCP server in Claude Desktop? +

Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-amplitude": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-amplitude"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.

How do I use the Amplitude MCP server in Cursor? +

In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-amplitude", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-amplitude"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.

Does Amplitude MCP require authentication? +

Yes. Amplitude requires authentication. Check the MCP's documentation for the required credentials.