movie_videos
Pack: tmdb · Endpoint: https://gateway.pipeworx.io/tmdb/mcp
Fetch trailers, teasers, clips, and featurettes for a TMDB movie by movie_id. Returns video name, site (YouTube/Vimeo), key (video ID), type, and official flag.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
movie_id | number | yes | |
language | string | no |
Example call
Arguments
{
"movie_id": 278
}
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_videos","arguments":{"movie_id":278}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('movie_videos', {
"movie_id": 278
});
Response shape
| Field | Type | Description |
|---|---|---|
id | number | Movie ID |
results | array | Video results |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Movie ID"
},
"results": {
"type": "array",
"description": "Video results",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Video ID"
},
"key": {
"type": "string",
"description": "Video key (e.g., YouTube ID)"
},
"name": {
"type": "string",
"description": "Video name"
},
"type": {
"type": "string",
"description": "Video type (Trailer, Clip, etc.)"
},
"site": {
"type": "string",
"description": "Video site (YouTube, Vimeo, etc.)"
}
}
}
}
}
}
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.