Appearance
Cursor, Claude, ChatGPT, and cURL
The MCP endpoint is always:
http
https://fifa.qtech.hr/mcp- Protocol: JSON-RPC 2.0 over HTTP (Streamable HTTP), MCP
2025-11-05 - Manifest (SEP-1649):
https://fifa.qtech.hr/.well-known/mcp.json(alias:/.well-known/mcp/server-card.json)
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)
- Open Settings → MCP (or edit
~/.cursor/mcp.jsonon the Mac). - 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"
}
}
}
}- 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/mcpand a headerAuthorization: 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 →