person_combined_credits
Pack: tmdb · Endpoint: https://gateway.pipeworx.io/tmdb/mcp
Fetch all movie and TV credits for a TMDB person by person_id. Returns cast and crew entries with title, character/job, media type, release date, and vote average.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
person_id | number | yes | |
language | string | no |
Example call
Arguments
{
"person_id": 6384
}
curl
curl -X POST https://gateway.pipeworx.io/tmdb/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"person_combined_credits","arguments":{"person_id":6384}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('person_combined_credits', {
"person_id": 6384
});
Response shape
| Field | Type | Description |
|---|---|---|
id | number | Person ID |
cast | array | Cast credits |
crew | array | Crew credits |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Person ID"
},
"cast": {
"type": "array",
"description": "Cast credits",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"title": {
"type": "string"
},
"character": {
"type": "string"
}
}
}
},
"crew": {
"type": "array",
"description": "Crew credits",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"job": {
"type": "string"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"tmdb": {
"url": "https://gateway.pipeworx.io/tmdb/mcp"
}
}
}
See Getting Started for client-specific install steps.