KosmoKrator

analytics

Amplitude Analytics MCP Gateway for AI Agents

Expose Amplitude Analytics tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.

7 functions 7 read 0 write API key auth

Amplitude Analytics MCP Gateway

Expose Amplitude Analytics to MCP clients with `kosmokrator mcp:serve --integration=amplitude`.

If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.

curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
kosmokrator mcp:gateway:install --integration=amplitude --write=deny --json
{
  "mcpServers": {
    "kosmokrator-amplitude": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=amplitude",
        "--write=deny"
      ]
    }
  }
}

Serve Manually

kosmokrator mcp:serve --integration=amplitude --write=deny

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__amplitude__amplitude_list_events amplitude.amplitude_list_events Read read
integration__amplitude__amplitude_get_event amplitude.amplitude_get_event Read read
integration__amplitude__amplitude_list_funnels amplitude.amplitude_list_funnels Read read
integration__amplitude__amplitude_get_funnel amplitude.amplitude_get_funnel Read read
integration__amplitude__amplitude_list_cohorts amplitude.amplitude_list_cohorts Read read
integration__amplitude__amplitude_get_cohort amplitude.amplitude_get_cohort Read read
integration__amplitude__amplitude_get_current_user amplitude.amplitude_get_current_user Read read

Write Access

Start with --write=deny for read-only MCP clients. Use --write=ask or --write=allow only when the client and workspace are trusted.