highlightly_matches
Pack: highlightly · Endpoint: https://gateway.pipeworx.io/highlightly/mcp
Live scores / matches for a sport on a date or league. Returns id, home/away teams, score, status, kickoff date, and league. Example: highlightly_matches({ sport: “football”, date: “2026-05-01”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
sport | string | no | Sport slug that selects the API path prefix. Default “football” (association football / soccer). Other values: “basketball”, “hockey”, “baseball”, “rugby”, “volleyball”. “soccer” is normalized to “football”. |
date | string | no | Match date in YYYY-MM-DD format, e.g. “2026-05-01” (optional) |
leagueId | string,number | no | Numeric league ID to filter by (optional) |
_apiKey | string | yes | Highlightly API key (free 100/day at highlightly.net) |
Example call
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_matches","arguments":{}}}'
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.