Find Your Next Movie After a Favorite
Start from one movie you already love and turn it into a shortlist of films with similar tone, genre, and audience response.
Find the next movie with the same energy
Turn one favorite movie or a small set of seed titles into a ranked shortlist of genuinely similar films. Great for watchlist building, movie-night planning, and agents that need explainable recommendations instead of generic search results.
Resolve one movie title or TMDb id and return a ranked shortlist of similar films with clear match reasons and alternate seed matches when the title is ambiguous.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "similar-movies",
"skill": "find_similar",
"input": {
"title": "Inception",
"include_same_collection": false,
"limit": 8
}
}' \
https://api.toolrouter.com/v1/tools/callBlend recommendations from multiple seed movies into one ranked shortlist so you can discover films that sit at the intersection of several favorites.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "similar-movies",
"skill": "blend_taste",
"input": {
"titles": [
"Inception",
"Arrival"
],
"include_same_collection": false,
"limit": 8
}
}' \
https://api.toolrouter.com/v1/tools/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"similar-movies","skill":"find_similar","input":{}}' \
https://api.toolrouter.com/v1/tools/callStart from one movie you already love and turn it into a shortlist of films with similar tone, genre, and audience response.
Combine two to five seed movies and rank the films that sit at the intersection of those tastes instead of following only one reference title.
Find relevant academic papers on any research topic across millions of scholarly publications.
Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.
`find_similar` starts from one seed movie, while `blend_taste` merges recommendations from several seed films into one shortlist. Use the single-seed flow for a straightforward “movies like this” request and the blend flow when the taste brief is really an intersection of two or more favorites.
No. You can pass a normal movie title and the tool will resolve the best seed match for you. If a title is ambiguous, the response also includes alternate seed matches so you can see what else it considered.
Yes. Set `include_same_collection` to `false` to filter out movies from the same TMDb collection where the API exposes that relationship. This is useful when you want adjacent films rather than the obvious sequel list.
Yes. `blend_taste` accepts `avoid_titles` and `avoid_tmdb_ids`, so you can remove obvious or already-watched picks from the results before you review the final ranking.