highlightly_predictions
Pack: highlightly · Endpoint: https://gateway.pipeworx.io/highlightly/mcp
Prediction for a match (model win/draw/away probabilities, when available on your plan). Requires a match ID. Example: highlightly_predictions({ sport: “football”, matchId: 123456, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
sport | string | no | Sport slug. Default “football” (soccer). “soccer” is normalized to “football”. |
matchId | string,number | yes | Numeric match ID to fetch the prediction for (required) |
_apiKey | string | yes | Highlightly API key (free 100/day at highlightly.net) |
Example call
Arguments
{
"sport": "football",
"matchId": 123456,
"_apiKey": "your-highlightly-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/highlightly/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"highlightly_predictions","arguments":{"sport":"football","matchId":123456,"_apiKey":"your-highlightly-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('highlightly_predictions', {
"sport": "football",
"matchId": 123456,
"_apiKey": "your-highlightly-api-key"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"highlightly": {
"url": "https://gateway.pipeworx.io/highlightly/mcp"
}
}
}
See Getting Started for client-specific install steps.