sportmonks_fixture
Pack: sportmonks · Endpoint: https://gateway.pipeworx.io/sportmonks/mcp
Match details + stats for a soccer fixture: score, participants (teams), statistics, and events. Example: sportmonks_fixture({ id: 19146701, _apiKey: “your-token” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string,number | yes | Sportmonks fixture (match) ID, e.g. 19146701 |
_apiKey | string | yes | Sportmonks API token (get one at my.sportmonks.com; free plan = Danish/Scottish leagues) |
Example call
Arguments
{
"id": 19146701,
"_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_fixture","arguments":{"id":19146701,"_apiKey":"your-sportmonks-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sportmonks_fixture', {
"id": 19146701,
"_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.