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

NameTypeRequiredDescription
person_idnumberyes
append_to_responsestringno
languagestringno

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

FieldTypeDescription
idnumberPerson ID
namestringPerson name
biographystringPerson biography
birthdaystringBirth date
deathdaystringDeath date
popularitynumberPopularity score
combined_creditsobjectFilm 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.

Regenerated from source · build July 6, 2026