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.

Cursor supports MCP servers via ~/.cursor/mcp.json. Trodo works with either remote-HTTP or stdio configurations.

Generate an API key

  1. Sign in to app.trodo.ai, pick your team (must be Growth or Enterprise).
  2. Integrations → MCP for Claude & Cursor → + Create API key.
  3. Label it (e.g. “cursor on alice’s laptop”), choose scopes, set rate limit, Create.
  4. Copy the key — it’s shown once.
Edit ~/.cursor/mcp.json:
{
  "mcpServers": {
    "trodo": {
      "transport": "http",
      "url": "https://mcp.trodo.ai/mcp",
      "headers": {
        "Authorization": "Bearer trodo_mk_xxx"
      }
    }
  }
}
Restart Cursor. The Trodo server appears in the MCP panel.

Option B — stdio (via trodomcp wrapper)

{
  "mcpServers": {
    "trodo": {
      "command": "npx",
      "args": ["-y", "trodomcp"],
      "env": {
        "TRODO_MCP_API_KEY": "trodo_mk_xxx"
      }
    }
  }
}
Use this when remote MCP isn’t an option in your Cursor build.

Verify

In Cursor, ask:
“Using the trodo MCP, what are the top 5 most-used agent tools this week?”
Cursor’s chat will surface the tool calls and results inline.