Climber.gg is in open beta. Sign up free; paid plans launching soon.What's live
Integration

MCP for Claude Desktop, Cursor & Continue

The same 26 esports coaching tools that power our chat are exposed as a public Model Context Protocol server. Plug it into your AI client of choice and ask the same kind of questions you'd ask in /coach.

1. Get an API key

Sign in, then go to /settings/profile API keys and create one. The key starts with esc_. Treat it like a password.

Open settings
2. Wire it into your client

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "climber-gg": {
      "url": "https://mcp.climber.gg/mcp",
      "headers": {
        "Authorization": "Bearer esc_your_key_here"
      }
    }
  }
}

Restart Claude Desktop. You should see climber-gg in the tools list.

Cursor

Settings → MCP → Add server:

{
  "mcp.servers": {
    "climber-gg": {
      "url": "https://mcp.climber.gg/mcp",
      "type": "http",
      "headers": { "Authorization": "Bearer esc_your_key_here" }
    }
  }
}

Continue (VS Code / JetBrains)

In your ~/.continue/config.yaml:

mcpServers:
  - name: climber-gg
    url: https://mcp.climber.gg/mcp
    headers:
      Authorization: Bearer esc_your_key_here
3. Ask away

Try the same prompts that work inside our coach:

  • “Why did I lose my last LoL game? My riot id is Faker#KR1”
  • “Compute my GPI on EUW.”
  • “Who's a good ADC counter to Caitlyn?”
  • “Show me the death timeline of my last ranked game.”

Tier & quotas

Same daily limits as the web app. Free: 1 deep analysis/day, LoL only. Pro: 10 deep analyses/day, LoL + Valorant. Ultimate: 30 deep analyses/day, all 5 games. Cached lookups are unlimited on every tier.

Pricing →

MCP server endpoint: https://mcp.climber.gg/mcp. Auth header: Authorization: Bearer esc_….