get-similar
Find movies similar to a specific film by entering its movie ID. The tool leverages TMDB API to provide tailored recommendations, enhancing your movie discovery experience.
Instructions
Get similar movies to a given movie
Input Schema
Name | Required | Description | Default |
---|---|---|---|
movieId | Yes | ID of the movie to find similar movies for |
Input Schema (JSON Schema)
{
"properties": {
"movieId": {
"description": "ID of the movie to find similar movies for",
"type": "string"
}
},
"required": [
"movieId"
],
"type": "object"
}