get_competition_matches
Pack: football-data · Endpoint: https://gateway.pipeworx.io/football-data/mcp
List matches in a competition. Filter by status (SCHEDULED, LIVE, IN_PLAY, PAUSED, FINISHED, POSTPONED, SUSPENDED, CANCELLED), date range, matchday, stage, or season year.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
competition | string | yes | Competition code (e.g., “PL” = Premier League, “PD” = La Liga, “CL” = Champions League) |
status | string | no | Match status filter (SCHEDULED | LIVE | IN_PLAY | PAUSED | FINISHED | POSTPONED | SUSPENDED | CANCELLED) |
date_from | string | no | YYYY-MM-DD |
date_to | string | no | YYYY-MM-DD |
matchday | number | no | Round number |
stage | string | no | Stage (e.g., “GROUP_STAGE”, “QUARTER_FINALS”) |
season | number | no | Season start year (e.g., 2025) |
Example call
curl -X POST https://gateway.pipeworx.io/football-data/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_competition_matches","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"football-data": {
"url": "https://gateway.pipeworx.io/football-data/mcp"
}
}
}
See Getting Started for client-specific install steps.