football_squad
Pack: api-football · Endpoint: https://gateway.pipeworx.io/api-football/mcp
The current player squad for a football club — every player with shirt number, position, age and nationality. Use for questions about who plays for a club, squad lists, and a team roster.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
team | string | yes | Club name, e.g. “AC Milan”. Resolved to its team id for you. |
_apiKey | string | no | BYO API-Football key. |
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_squad","arguments":{"team":"AC Milan"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('football_squad', {
"team": "AC Milan"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"api-football": {
"url": "https://gateway.pipeworx.io/api-football/mcp"
}
}
}
See Getting Started for client-specific install steps.