Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

get_lists_by_id_items_movie

Read-onlyIdempotent

Retrieve movies from a Trakt list by ID. Filter by genre, rating, year, streaming service, and more; sort, paginate, and exclude watched or collected items for customized results.

Instructions

Get movie list items.

GET /lists/{id}/items/movie

Args: id: The id/slug of the resource. extended: Extended information to include in the response. sort_by: The field to sort by sort_how: The direction to sort in 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. ignore_watched: Ignore watched items. ignore_collected: Ignore collected items. ignore_watchlisted: Ignore watchlisted items. page: The page number to retrieve limit: The number of items per page, can be a number or the value all

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
pageNo
limitNo
yearsNo
genresNo
ratingsNo
sort_byNo
end_dateNo
extendedNo
runtimesNo
sort_howNo
watchnowNo
countriesNo
subgenresNo
start_dateNo
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

C2.5/5.0
Behavior2/5

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

The annotations (readOnlyHint=true, idempotentHint=true, destructiveHint=false) already disclose that this is a safe read operation. The description adds no behavioral context beyond that—no mention of pagination, return format, or any operational quirks. It essentially repeats parameter names with minimal explanation.

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

Conciseness2/5

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

The description is verbose and repetitive, listing 19 parameters with terse labels that often just restate the parameter name. While it is front-loaded with the purpose, the long parameter list is not concise and many entries are uninformative. A more streamlined explanation would be more effective.

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

Completeness2/5

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

For a tool with 19 parameters, the description is incomplete. It does not explain what the response contains, how filtering works, or what 'extended' options are available. It also fails to clarify the meaning of the filtering parameters. Given the tool's complexity, a complete description should provide at least an overview of expected output and parameter usage.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate, but it fails. Many parameters are described only as 'Query parameter' (e.g., genres, subgenres, years), adding no meaning beyond the schema. The watchnow parameter receives a detailed explanation of valid values, which is helpful, but this is the exception. Most parameters lack functional context.

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 list items.' and includes the endpoint GET /lists/{id}/items/movie, making the purpose clear. However, it does not explicitly differentiate from sibling tools like get_lists_by_id_items_show or get_lists_by_id_items_movie_show, relying on the name to convey the movie-specific scope.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It does not mention that it is for movie items only or how it differs from other list-item retrieval tools. No exclusions or alternative suggestions are given.

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