get-movie-details
Retrieve comprehensive information about a specific movie by providing its ID, enabling detailed insights for analysis or recommendations via the TMDB MCP Server.
Instructions
Get detailed information about a specific movie
Input Schema
Name | Required | Description | Default |
---|---|---|---|
movieId | Yes | ID of the movie to get details for |
Input Schema (JSON Schema)
{
"properties": {
"movieId": {
"description": "ID of the movie to get details for",
"type": "string"
}
},
"required": [
"movieId"
],
"type": "object"
}