search_movies
Search for movies by title and optional year using the MCP server, retrieving detailed information to streamline your film discovery process.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes | Movie title to search for | |
year | No | Movie year (optional) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"title": {
"description": "Movie title to search for",
"type": "string"
},
"year": {
"description": "Movie year (optional)",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}