Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.trodo.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Two transports work — pick one.
claude mcp add trodo \
  --transport http \
  --url https://mcp.trodo.ai/mcp \
  --header "Authorization: Bearer trodo_mk_xxx"
Generate the API key from app.trodo.ai/integrations — choose the scopes you need. Verify it connected:
claude mcp list
# trodo  http  https://mcp.trodo.ai/mcp  ✓
Then in any Claude Code session, the tools are available:
claude "show me the top 5 failing agent tools last week"

Option B — stdio transport (via the trodomcp wrapper)

If your environment doesn’t allow direct HTTPS or you prefer stdio:
claude mcp add trodo \
  --transport stdio \
  --command "npx -y trodomcp" \
  --env TRODO_MCP_API_KEY=trodo_mk_xxx
The wrapper is a 50-line zero-dependency Node CLI that proxies stdio JSON-RPC ↔ HTTPS. Source: github.com/trodoai/app/tree/main/sdks/trodo-mcp-cli.

API key scopes

When you generate the key, pick scopes deliberately:
  • Default: mcp:events, mcp:agent_runs, mcp:cluster — analytics + agent observability, no PII.
  • Add mcp:user:read_pii only if you’ll be asking Claude to look up individual users. Returns emails, wallet addresses, country, device.

Removing

claude mcp remove trodo
Then revoke the API key from Trodo’s Integrations → MCP for Claude & Cursor page.