movie_recommendations
Pack: tmdb · Endpoint: https://gateway.pipeworx.io/tmdb/mcp
Fetch TMDB-recommended movies similar to a given movie by movie_id. Returns title, overview, release date, popularity, vote average, and poster path for each recommended film.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
movie_id | number | yes | |
page | number | 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_recommendations","arguments":{"movie_id":550}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('movie_recommendations', {
"movie_id": 550
});
More examples
{
"movie_id": 278,
"page": 1
}
Response shape
| Field | Type | Description |
|---|---|---|
page | number | Current page number |
results | array | Recommended movies |
total_pages | number | Total pages available |
total_results | number | Total results |
Full JSON Schema
{
"type": "object",
"properties": {
"page": {
"type": "number",
"description": "Current page number"
},
"results": {
"type": "array",
"description": "Recommended movies",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Movie ID"
},
"title": {
"type": "string",
"description": "Movie title"
}
}
}
},
"total_pages": {
"type": "number",
"description": "Total pages available"
},
"total_results": {
"type": "number",
"description": "Total results"
}
}
}
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.