Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

get_smart_lists_by_list_id_items

Read-onlyIdempotent

Retrieve movies and shows from a Trakt smart list by list ID. Filter by genre, year, rating, runtime, country, certification, and streaming availability to find matching items.

Instructions

Get smart list items.

GET /smart-lists/{list_id}/items

Args: list_id: Path parameter. extended: Extended information to include in the response. 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. runtimes: Query parameter. countries: Query parameter. certifications: Query parameter. ignore_watched: Ignore watched 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
pageNo
limitNo
yearsNo
genresNo
list_idYes
ratingsNo
extendedNo
runtimesNo
watchnowNo
countriesNo
subgenresNo
certificationsNo
ignore_watchedNo
ignore_watchlistedNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered elsewhere. The description adds some useful parameter behavior, especially the allowed watchnow values and the 'all' option for limit, but it does not disclose auth requirements, pagination behavior, or response shape—though the latter is mitigated by the output schema.

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 structured with a purpose line, endpoint, and an Args list, making it easy to scan. However, the repeated 'Query parameter' lines add little value and make the description longer than necessary, while the lengthy watchnow explanation, though useful, is embedded inconsistently with the other parameter entries.

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 14 parameters, only one required, and 0% schema description coverage, the description leaves significant gaps. It does not explain how filter parameters combine, what value formats are expected for genres/years/ratings/countries, or how this endpoint relates to smart-list creation and ownership, so an agent would struggle to construct a correct request beyond the most basic one.

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 for the schema's lack of semantic detail. It adds meaningful detail for watchnow, limit, page, and the ignore flags, but repeats 'Query parameter' for genres, subgenres, years, ratings, runtimes, countries, and certifications, providing no format, allowed values, or examples for these key filter parameters.

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 smart list items' and includes the endpoint 'GET /smart-lists/{list_id}/items', making the verb and resource clear. It does not explicitly differentiate itself from sibling list-item endpoints like get_lists_by_id_items or get_users_by_id_smart_lists_by_list_id, but the 'smart list' framing is still specific enough to convey the core purpose.

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?

There is no guidance about when to use this tool versus alternatives such as get_lists_by_id_items, get_users_by_id_smart_lists_by_list_id, or the various list-item-by-type endpoints. The description only states the operation and lists parameters, leaving the agent to infer usage context from the tool name.

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