Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

list_recommendations_movies

Read-onlyIdempotent

Retrieve personalized movie recommendations from Trakt, filtered by genres, ratings, streaming availability, and more.

Instructions

Get movie recommendations.

GET /recommendations/movies/

Args: extended: Extended information to include in the response. limit: Limit the number of results. watch_window: The watch window in days for the recommendations. ignore_watched: Ignore watched items. ignore_collected: Ignore collected items. ignore_watchlisted: Ignore watchlisted items. watchnow: Use "favorites" for streaming on a favorite service of the user. Use "any" for streaming on any service in the user's country. Use "any_all" for streaming on any service in all countries. Use "free" for streaming for free in the user's country. Use "free_all" for streaming for free in all countries. Use "subscriptions" for streaming on any subscription service (Netflix, Hulu, etc) in the user's country. Use "subscriptions_all" streaming on any subscription service in all countries genres: Query parameter. subgenres: Query parameter. years: Query parameter. ratings: Query parameter. start_date: Query parameter. end_date: Query parameter. runtimes: Query parameter. countries: Query parameter. certifications: Query parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
yearsNo
genresNo
ratingsNo
end_dateNo
extendedNo
runtimesNo
watchnowNo
countriesNo
subgenresNo
start_dateNo
watch_windowNo
certificationsNo
ignore_watchedNo
ignore_collectedNo
ignore_watchlistedNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds detail about filtering behavior (ignore_watched, ignore_collected, watchnow, etc.) but does not disclose pagination, default limits, ordering, or response shape. The added context is useful but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loads the core action and endpoint. The parameter list is concise, but the repetitive 'Query parameter.' entries add little value. The watchnow block is verbose but necessary because it documents valid enum-like values.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only list tool with an output schema and strong annotations, the description covers the endpoint and key parameters. It is incomplete on value formats for dates, years, genres, ratings, runtimes, countries, and certifications, and it does not clarify limit behavior or extended values. An agent would still face uncertainty when constructing arguments.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description carries the burden for 16 parameters. The watchnow parameter is thoroughly explained with valid values, and the ignore_* booleans are self-explanatory. However, genres, subgenres, years, ratings, start_date, end_date, runtimes, countries, and certifications are only labeled 'Query parameter', adding minimal semantic value beyond their names.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Get movie recommendations' and states the endpoint GET /recommendations/movies/. This clearly identifies the resource and distinguishes it from list_recommendations_shows by name. It could be stronger if it explicitly contrasted with the shows sibling, but the verb+resource is clear.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implicitly covers usage by listing all parameters and giving detailed guidance for watchnow values. It does not explicitly state when to prefer this tool over list_recommendations_shows or other browsing endpoints, nor does it state when not to use it. The intended use is inferable but not stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools