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

NameTypeRequiredDescription
movie_idnumberyes
append_to_responsestringno
languagestringno

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

FieldTypeDescription
idnumberMovie ID
titlestringMovie title
release_datestringRelease date
runtimenumberRuntime in minutes
vote_averagenumberAverage vote rating
overviewstringMovie overview
genresarrayMovie genres
creditsobjectCast and crew (if appended)
videosobjectVideos (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.

Regenerated from source · build July 6, 2026