search_movie
Pack: tmdb · Endpoint: https://gateway.pipeworx.io/tmdb/mcp
Search TMDB for movies by title keyword. Optionally filter by year or primary_release_year. Returns title, release date, overview, popularity, vote average, and TMDB movie_id needed by movie and movie_credits.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | |
year | number | no | |
primary_release_year | number | no | |
page | number | no | |
language | string | no | |
region | string | no | |
include_adult | boolean | no |
Example call
Arguments
{
"query": "The Shawshank Redemption"
}
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":"search_movie","arguments":{"query":"The Shawshank Redemption"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_movie', {
"query": "The Shawshank Redemption"
});
More examples
{
"query": "Inception",
"year": 2010,
"page": 1
}
Response shape
| Field | Type | Description |
|---|---|---|
page | number | Current page number |
results | array | Array of movie search results |
total_pages | number | Total number of pages available |
total_results | number | Total number of results |
Full JSON Schema
{
"type": "object",
"properties": {
"page": {
"type": "number",
"description": "Current page number"
},
"results": {
"type": "array",
"description": "Array of movie search results",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Movie ID"
},
"title": {
"type": "string",
"description": "Movie title"
},
"release_date": {
"type": "string",
"description": "Release date"
},
"popularity": {
"type": "number",
"description": "Popularity score"
},
"vote_average": {
"type": "number",
"description": "Average vote rating"
},
"overview": {
"type": "string",
"description": "Movie overview/synopsis"
}
}
}
},
"total_pages": {
"type": "number",
"description": "Total number of pages available"
},
"total_results": {
"type": "number",
"description": "Total number of 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.