predictions
Pack: api-football · Endpoint: https://gateway.pipeworx.io/api-football/mcp
API-Football’s own match-outcome predictions. Returns home/draw/away win probabilities, advice, h2h context, form. Use for “who will win” research on specific fixtures.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
fixture | number | yes | Fixture ID — get from fixtures() output |
_apiKey | string | no |
Example call
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":"predictions","arguments":{}}}'
Response shape
Full JSON Schema
{
"oneOf": [
{
"type": "null",
"description": "No prediction data found for fixture"
},
{
"type": "object",
"description": "Match prediction object with outcome probabilities and analysis"
}
]
}
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.