person
Pack: tmdb · Endpoint: https://gateway.pipeworx.io/tmdb/mcp
Fetch TMDB person details by person_id. Returns full name, biography, birthday, deathday, place of birth, known-for department, and profile image path.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
person_id | number | yes | |
append_to_response | string | no | |
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","arguments":{"person_id":6384}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('person', {
"person_id": 6384
});
More examples
{
"person_id": 500,
"append_to_response": "combined_credits"
}
Response shape
| Field | Type | Description |
|---|---|---|
id | number | Person ID |
name | string | Person name |
biography | string | Person biography |
birthday | string | Birth date |
deathday | string | Death date |
popularity | number | Popularity score |
combined_credits | object | Film and TV credits (if appended) |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Person ID"
},
"name": {
"type": "string",
"description": "Person name"
},
"biography": {
"type": "string",
"description": "Person biography"
},
"birthday": {
"type": "string",
"description": "Birth date"
},
"deathday": {
"type": "string",
"description": "Death date"
},
"popularity": {
"type": "number",
"description": "Popularity score"
},
"combined_credits": {
"type": "object",
"description": "Film and TV credits (if appended)"
}
}
}
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.