Football-Data
live SportsSoccerSoccer competitions, matches, standings, teams across 12 major leagues. Free 10 req/min.
5 tools
0ms auth
free tier 50 calls/day
Tools
list_competitions All competitions accessible on your tier.
No parameters required.
Try it
Response
get_competition_matches
required: competition Matches in a competition, filtered by status/date/matchday.
Parameters
Name Type Description
competition req string Competition code (e.g., PL, PD, CL) status opt string Match status date_from opt string YYYY-MM-DD date_to opt string YYYY-MM-DD matchday opt number Round number stage opt string Stage identifier season opt number Season start year Try it
Response
get_competition_standings
required: competition League table for a season.
Parameters
Name Type Description
competition req string Competition code season opt number Season year matchday opt number As-of matchday Try it
Response
get_team
required: team_id Team detail with squad.
Parameters
Name Type Description
team_id req number Team ID Try it
Response
get_team_matches
required: team_id Matches for a team across competitions.
Parameters
Name Type Description
team_id req number Team ID status opt string Match status date_from opt string YYYY-MM-DD date_to opt string YYYY-MM-DD venue opt string HOME | AWAY season opt number Season year limit opt number Cap (default 50) Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/football-data/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/football-data/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"list_competitions","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("list_competitions", {}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("soccer competitions, matches, standings, teams across 12 major leagues");