Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mcpcat.io/llms.txt

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

The MCPcat MCP server lets you query your usage analytics and debug issues directly from your coding agent. It runs at:
https://mcp.mcpcat.io/mcp
Authentication uses OAuth — you never copy an API key. The first time your client connects, it opens a browser to sign in to your MCPcat account, then caches the token.

Claude Code

claude mcp add --transport http mcpcat https://mcp.mcpcat.io/mcp
Run /mcp inside a session to complete the browser sign-in.

Claude Desktop

Open Settings → Connectors → Add custom connector, paste https://mcp.mcpcat.io/mcp, and sign in. The same custom-connector flow works across Claude’s desktop apps (Claude Desktop and Cowork) — remote servers are supported directly, no proxy needed.

Codex

codex mcp add mcpcat --url https://mcp.mcpcat.io/mcp

Cursor

Add to Cursor — or add manually to ~/.cursor/mcp.json:
{ "mcpServers": { "mcpcat": { "url": "https://mcp.mcpcat.io/mcp" } } }

VS Code

Add to .vscode/mcp.json (or run code --add-mcp '{"name":"mcpcat","type":"http","url":"https://mcp.mcpcat.io/mcp"}'):
{
  "servers": {
    "mcpcat": { "type": "http", "url": "https://mcp.mcpcat.io/mcp" }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:
{ "mcpServers": { "mcpcat": { "serverUrl": "https://mcp.mcpcat.io/mcp" } } }

Other clients

Most clients accept the standard config:
{
  "mcpServers": {
    "mcpcat": { "type": "http", "url": "https://mcp.mcpcat.io/mcp" }
  }
}

Tools available

list_projects, get_project_overview, search_sessions, get_session, search_issues, get_issue, get_metric_trend, get_metric_breakdown, list_skills, load_skill.

Example prompts

  • “What are my top tools in the last 7 days?”
  • “Investigate issue PROJ-42.”
  • “Summarize session ses_abc123 and tell me why it errored.”