event_lineup
Pack: thesportsdb · Endpoint: https://gateway.pipeworx.io/thesportsdb/mcp
Starting eleven and substitutes for one match, per side, with each player’s position, squad number and TheSportsDB player id. COVERAGE IS PER-COMPETITION: a match the source has not covered returns found:false with a reason, not an error.
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_lineup","arguments":{"event_id":"2594568"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('event_lineup', {
"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.