event_detail

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

One match by its TheSportsDB event id: final and half-time score, competition, season, round, venue, date and kickoff time, and the goal detail strings where the source carries them. Use for settling a match-level question (who won, what was the half-time score) after finding the event id with events_by_day, team_events_last or team_events_next.

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_detail","arguments":{"event_id":"2594568"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('event_detail', {
  "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