movie
Pack: tmdb · Endpoint: https://gateway.pipeworx.io/tmdb/mcp
Fetch full TMDB movie details by movie_id. Returns title, tagline, overview, runtime, genres, release date, budget, revenue, vote average, and production companies. Optionally append credits/videos/images via append_to_response.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
movie_id | number | yes | |
append_to_response | string | no | |
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","arguments":{"movie_id":550}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('movie', {
"movie_id": 550
});
More examples
{
"movie_id": 278,
"append_to_response": "credits,reviews"
}
Response shape
| Field | Type | Description |
|---|---|---|
id | number | Movie ID |
title | string | Movie title |
release_date | string | Release date |
runtime | number | Runtime in minutes |
vote_average | number | Average vote rating |
overview | string | Movie overview |
genres | array | Movie genres |
credits | object | Cast and crew (if appended) |
videos | object | Videos (if appended) |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Movie ID"
},
"title": {
"type": "string",
"description": "Movie title"
},
"release_date": {
"type": "string",
"description": "Release date"
},
"runtime": {
"type": "number",
"description": "Runtime in minutes"
},
"vote_average": {
"type": "number",
"description": "Average vote rating"
},
"overview": {
"type": "string",
"description": "Movie overview"
},
"genres": {
"type": "array",
"description": "Movie genres",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"name": {
"type": "string"
}
}
}
},
"credits": {
"type": "object",
"description": "Cast and crew (if appended)"
},
"videos": {
"type": "object",
"description": "Videos (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.