get_player
Pack: thesportsdb · Endpoint: https://gateway.pipeworx.io/thesportsdb/mcp
Full player profile from TheSportsDB by numeric player_id — returns name, team, nationality, position, birth date, description, and thumbnail.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
player_id | string | yes |
Example call
Arguments
{
"player_id": "34146"
}
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":"get_player","arguments":{"player_id":"34146"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_player', {
"player_id": "34146"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Response from TheSportsDB player lookup endpoint"
}
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.