event_stats

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

Team-by-team match statistics for one event — shots on goal, corners, possession, fouls, passes and whatever else the source recorded, as home/away pairs. Use for settling shot-count, corner and possession questions. COVERAGE IS PER-COMPETITION: a match the source has not covered returns found:false with a reason, not an error.

Parameters

NameTypeRequiredDescription
event_idstringyesTheSportsDB idEvent, e.g. “2594568”.
_apiKeystringnoOptional TheSportsDB key. The free tier serves this tool; a supporter key raises the rate limit.

Example call

Arguments

{
  "event_id": "2594568"
}

curl

curl -X POST https://gateway.pipeworx.io/thesportsdb/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"event_stats","arguments":{"event_id":"2594568"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('event_stats', {
  "event_id": "2594568"
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 12, 2026