Api Football
live DataSportsAPI-Football MCP — comprehensive soccer/football data
Tools
fixtures Get match fixtures (upcoming + recent) by league, team, or date. Use league=1 for FIFA World Cup, league=39 for EPL, league=140 for La Liga. Returns kickoff, teams, score (if played), venue, status.
No parameters required.
Try it
standings Current standings table for a league. Returns rank, team, points, goal difference, form. Use league=1 for World Cup.
No parameters required.
Try it
team_search Look up a team by name + country to get its team_id for use in other tools.
No parameters required.
Try it
league_search Look up a league/tournament/competition by name to get its league_id.
No parameters required.
Try it
predictions API-Football model predictions for a fixture — win/draw/loss probabilities, predicted score, advice. Useful as a prior on outright outcomes.
No parameters required.
Try it
h2h Head-to-head record between two teams. Returns last N matches with scores.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/api-football/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/api-football/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"fixtures","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("fixtures", {}); // Or ask in plain English:
const answer = await px.ask("api-football mcp — comprehensive soccer/football data"); Related packs
Other Pipeworx packs in the same categories (Data, Sports):