get_matches

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

Get football / soccer match results / scores and fixtures for a league and season (e.g. Bundesliga). Optionally narrow to a single matchday. Returns teams, kickoff datetime, final score, and whether each match is finished.

Parameters

NameTypeRequiredDescription
leaguestringyes
seasonstringyesSeason start year, e.g. “2024”.
matchdaynumbernoOptional matchday number (1-based).

Example call

Arguments

{
  "league": "bl1",
  "season": "2024"
}

curl

curl -X POST https://gateway.pipeworx.io/openligadb/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_matches","arguments":{"league":"bl1","season":"2024"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_matches', {
  "league": "bl1",
  "season": "2024"
});

More examples

{
  "league": "bl1",
  "season": "2024",
  "matchday": 5
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "openligadb": {
      "url": "https://gateway.pipeworx.io/openligadb/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 4, 2026