Api Football

live DataSports

API-Football MCP — comprehensive soccer/football data

6 tools
0ms auth
free tier 50 calls/day

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
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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/api-football/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/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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("fixtures", {});
ask_pipeworx
// 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):