movie_credits
Pack: tmdb · Endpoint: https://gateway.pipeworx.io/tmdb/mcp
TMDb full cast + crew for a movie by ID. Returns actor names, characters, order, department, job. Use for “who played X in Y”, “who directed Y”, “behind-the-scenes credits”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
movie_id | number | yes | |
language | string | no |
Example call
Arguments
{
"movie_id": 550
}
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":"movie_credits","arguments":{"movie_id":550}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('movie_credits', {
"movie_id": 550
});
Response shape
| Field | Type | Description |
|---|---|---|
id | number | Movie ID |
cast | array | Cast members |
crew | array | Crew members |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Movie ID"
},
"cast": {
"type": "array",
"description": "Cast members",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Person ID"
},
"name": {
"type": "string",
"description": "Actor name"
},
"character": {
"type": "string",
"description": "Character name"
}
}
}
},
"crew": {
"type": "array",
"description": "Crew members",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Person ID"
},
"name": {
"type": "string",
"description": "Crew member name"
},
"job": {
"type": "string",
"description": "Job title"
}
}
}
}
}
}
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.