event_timeline
Pack: thesportsdb · Endpoint: https://gateway.pipeworx.io/thesportsdb/mcp
Minute-by-minute timeline for one match: goals with scorer and assist, cards, and substitutions, each with the minute and which side it belongs to. Use for settling scorer, first-goal and card questions. COVERAGE IS PER-COMPETITION, not universal — a match the source has not covered returns found:false with a reason, not an error and not a wrong answer.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
event_id | string | yes | TheSportsDB idEvent, e.g. “2594568”. |
_apiKey | string | no | Optional 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_timeline","arguments":{"event_id":"2594568"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('event_timeline', {
"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.