search-movies
Find movies by title or keywords using the TMDB MCP Server API. Submit a search query to retrieve results and navigate pages for detailed listings.
Instructions
Search for movies by title or keywords
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number for results | |
query | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"description": "Page number for results",
"type": "number"
},
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}