Skip to content
26SportsxonUSA · CAN · MEX
Developers

MCP Server

Connect Claude — or any Model Context Protocol client — to live World Cup 2026 data. Read-only tools for matches, live scores, standings, teams, players and search, served over Streamable HTTP.

Endpoint

JSON-RPC 2.0 over HTTP POST. Protocol version 2024-11-05.

https://sportsxon.com/api/mcp

Connect from Claude

Add this to your client's MCP configuration (e.g. Claude Desktop mcp.json):

{
  "mcpServers": {
    "sportsxon": {
      "type": "streamable-http",
      "url": "https://sportsxon.com/api/mcp"
    }
  }
}

Tools

  • list_matches{ "stage": "group", "status": "live", "limit": 30 }

    List fixtures, filterable by stage and status.

  • get_match{ "slug": "a1-mex-kor" }

    A single match with live state and recent timeline events.

  • live_score{ "slug": "a1-mex-kor" }

    Current score, minute and period for a match.

  • standings{ "group": "A" }

    Group standings — one group, or all groups if omitted.

  • get_team{ "code": "MEX" }

    A team and its fixtures.

  • get_player{ "slug": "mex-9" }

    A player and tournament stats.

  • top_scorers{ "limit": 10 }

    Top scorers leaderboard.

  • search{ "q": "mexico" }

    Search teams, players and matches by name.

Try it

A raw tools/call over curl:

curl -s -X POST https://sportsxon.com/api/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
       "params":{"name":"live_score","arguments":{"slug":"a1-mex-kor"}}}'

See also the agent skills catalog and machine-readable llms.txt.