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

NameTypeRequiredDescription
sportstringnoSport slug that selects the API path prefix. Default “football” (association football / soccer). Other values: “basketball”, “hockey”, “baseball”, “rugby”, “volleyball”. “soccer” is normalized to “football”.
datestringnoMatch date in YYYY-MM-DD format, e.g. “2026-05-01” (optional)
leagueIdstring,numbernoNumeric league ID to filter by (optional)
_apiKeystringyesHighlightly API key (free 100/day at highlightly.net)

Example call

Arguments

{
  "sport": "football",
  "date": "2026-05-01",
  "_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_matches","arguments":{"sport":"football","date":"2026-05-01","_apiKey":"your-highlightly-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('highlightly_matches', {
  "sport": "football",
  "date": "2026-05-01",
  "_apiKey": "your-highlightly-api-key"
});

More examples

{
  "sport": "basketball",
  "leagueId": 1,
  "_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.

Regenerated from source · build August 19, 2026