sportmonks_fixtures_by_date
Pack: sportmonks · Endpoint: https://gateway.pipeworx.io/sportmonks/mcp
Soccer fixtures on a date — every match scheduled/played on a given day with teams and scores. Example: sportmonks_fixtures_by_date({ date: “2026-05-24”, _apiKey: “your-token” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
date | string | yes | Date in YYYY-MM-DD format, e.g. “2026-05-24” |
_apiKey | string | yes | Sportmonks API token (get one at my.sportmonks.com; free plan = Danish/Scottish leagues) |
Example call
Arguments
{
"date": "2026-05-24",
"_apiKey": "your-sportmonks-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/sportmonks/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sportmonks_fixtures_by_date","arguments":{"date":"2026-05-24","_apiKey":"your-sportmonks-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sportmonks_fixtures_by_date', {
"date": "2026-05-24",
"_apiKey": "your-sportmonks-api-key"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sportmonks": {
"url": "https://gateway.pipeworx.io/sportmonks/mcp"
}
}
}
See Getting Started for client-specific install steps.