Getting Started

  1. Sign up at footballgpt.co and upgrade to Pro ($10.99/month)
  2. Go to footballgpt.co/app/mcp and add API Access ($4.99/month)
  3. Click Generate Key to get your fgpt_ API key
  4. Copy the MCP config JSON (shown with your key filled in)
  5. Paste it into Claude Desktop, Cursor, or your MCP client (see setup guide below)
  6. Restart the app and start coaching

<aside> ⚽ Base URL: https://footballgpt.co/api/mcp/stream Protocol: MCP (Model Context Protocol) over Streamable HTTP Auth: Bearer token (your fgpt_ key) Format: JSON-RPC 2.0

</aside>


Authentication

Every request requires a Bearer token in the Authorization header. Generate your API key at footballgpt.co/app/mcp. Keys start with fgpt_ and are shown once at creation.

Authorization: Bearer fgpt_your_key_here

MCP Setup (Claude Desktop, Cursor, Windsurf, Claude Code)

Paste this into your MCP client settings file, replacing your_key_here with your actual key:

{
  "mcpServers": {
    "footballgpt": {
      "type": "streamable-http",
      "url": "<https://www.footballgpt.co/api/mcp/stream>",
      "headers": {
        "Authorization": "Bearer fgpt_your_key_here"
      }
    }
  }
}

Config file locations