Football-Data
liveSportsSoccer competitions, matches, standings, teams across 12 major leagues. Free 10 req/min.
5tools
0msauth
free tier50 calls/day
Tools
list_competitionsAll competitions accessible on your tier.
No parameters required.
Try it
Response
get_competition_matchesrequired: competitionMatches in a competition, filtered by status/date/matchday.
Parameters
NameTypeDescription
competitionreqstringCompetition code (e.g., PL, PD, CL)statusoptstringMatch statusdate_fromoptstringYYYY-MM-DDdate_tooptstringYYYY-MM-DDmatchdayoptnumberRound numberstageoptstringStage identifierseasonoptnumberSeason start yearTry it
Response
get_competition_standingsrequired: competitionLeague table for a season.
Parameters
NameTypeDescription
competitionreqstringCompetition codeseasonoptnumberSeason yearmatchdayoptnumberAs-of matchdayTry it
Response
get_teamrequired: team_idTeam detail with squad.
Parameters
NameTypeDescription
team_idreqnumberTeam IDTry it
Response
get_team_matchesrequired: team_idMatches for a team across competitions.
Parameters
NameTypeDescription
team_idreqnumberTeam IDstatusoptstringMatch statusdate_fromoptstringYYYY-MM-DDdate_tooptstringYYYY-MM-DDvenueoptstringHOME | AWAYseasonoptnumberSeason yearlimitoptnumberCap (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");