Skip to content

Cursor, Claude, ChatGPT, and cURL

The MCP endpoint is always:

http
https://fifa.qtech.hr/mcp

Bearer token (optional, but required for premium tools and for higher study/search quotas):

  • Supabase access token from a logged-in session, or
  • fam_live_… key from Account → MCP keys (premium).

Anonymous calls still work for unmetered read tools (lessons, list/get Scout players, etc.).


Cursor (native streamable URL)

  1. Open Settings → MCP (or edit ~/.cursor/mcp.json on the Mac).
  2. Add a remote server pointing at the URL and pass your key if you have one:
json
{
  "mcpServers": {
    "fifa-agent-mentor": {
      "url": "https://fifa.qtech.hr/mcp",
      "headers": {
        "Authorization": "Bearer fam_live_YOUR_KEY_HERE"
      }
    }
  }
}
  1. Restart Cursor or Reload MCP, then use List tools in the MCP panel.

Authorization is optional for anonymous read-only use; premium AI tools will return PREMIUM_REQUIRED (or similar) without a valid premium bearer.


Claude Desktop (stdio bridge)

Some builds use a small stdio process that connects to a remote server. A common pattern (also shown on the main site’s homepage) uses mcp-remote:

json
{
  "mcpServers": {
    "fifa-agent-mentor": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://fifa.qtech.hr/mcp",
        "--header",
        "Authorization:${FIFA_KEY}"
      ],
      "env": {
        "FIFA_KEY": "Bearer fam_live_YOUR_KEY"
      }
    }
  }
}

Adjust paths to match Anthropic’s current docs for your OS.


ChatGPT / OpenAI connectors

  • Create a connector with base URL https://fifa.qtech.hr/mcp and a header Authorization: Bearer fam_live_… for premium.
  • The surface speaks JSON-RPC on POST — it is not a generic OpenAPI file; for catalog-style links see the API catalog.

Copy-paste: verify

bash
curl -s https://fifa.qtech.hr/mcp \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer fam_live_YOUR_KEY' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

You should get a result with a tools array — not a JSON-RPC error.

bash
curl -s https://fifa.qtech.hr/mcp \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"site_info","arguments":{}}}'

Next steps: Auth and quotas → · MCP tools catalog →