sportmonks_predictions

Pack: sportmonks · Endpoint: https://gateway.pipeworx.io/sportmonks/mcp

Win/draw/loss prediction for a fixture — Sportmonks model probabilities for home win, draw, and away win. Example: sportmonks_predictions({ id: 19146701, _apiKey: “your-token” })

Parameters

NameTypeRequiredDescription
idstring,numberyesSportmonks fixture (match) ID, e.g. 19146701
_apiKeystringyesSportmonks 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_predictions","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_predictions', {
  "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.

Regenerated from source · build August 19, 2026