football_injuries
Pack: api-football · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/football_injuries for the schema, then POST the same URL with its arguments for the data.
Currently injured and unavailable football players for a club or a league — who is out, the injury or reason, and whether they are ruled out or merely doubtful. Covers Serie A, the Premier League, La Liga, the Bundesliga, Ligue 1 and other competitions worldwide. Use for questions about which players are injured, unavailable, or missing from a squad.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
team | string | no | Club name, e.g. “AC Milan”. Resolved to its team id for you. |
league | number | no | League id instead of a team — use league_search to find one. |
season | number | no | Season start year, e.g. 2025. Defaults to the current season. |
_apiKey | string | no | BYO API-Football key (https://dashboard.api-football.com/register) |
Example call
Arguments
{
"team": "AC Milan"
}
curl
curl -X POST https://gateway.pipeworx.io/api-football/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"football_injuries","arguments":{"team":"AC Milan"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('football_injuries', {
"team": "AC Milan"
});
More examples
{
"league": 135,
"season": 2025
}
Connect
Add this to your MCP client config — every tool in the catalog, including this one — or use one-click install buttons:
{
"mcpServers": {
"pipeworx": {
"url": "https://pipeworx.io/mcp"
}
}
}
Connect to just the api-football pack
{
"mcpServers": {
"api-football": {
"url": "https://gateway.pipeworx.io/api-football/mcp"
}
}
}
See Getting Started for client-specific install steps.