Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

list_sync_playback_movies

Read-onlyIdempotent

Retrieve movie playback progress from Trakt to see where you stopped watching and continue watching from that point.

Instructions

Get movie playback progress.

GET /sync/playback/movies

Args: 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. start_date: Query parameter. end_date: Query parameter. runtimes: Query parameter. countries: Query parameter. certifications: Query parameter. page: The page number to retrieve limit: The number of items per page. Defaults and maximums vary by endpoint. When pagination parameters are omitted, a low default limit is applied (often 10). When a limit is provided, it is capped at the endpoint maximum (often 250); higher values are clamped rather than rejected. start_at: Start date for the range. Must be formatted as "YYYY-MM-DD". end_at: End date for the range. Must be formatted as "YYYY-MM-DD".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
limitNo
yearsNo
end_atNo
genresNo
ratingsNo
end_dateNo
extendedNo
runtimesNo
start_atNo
watchnowNo
countriesNo
subgenresNo
start_dateNo
certificationsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/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 clear. The description adds useful context about pagination behavior (defaults, maximums, clamping) and date formatting requirements, which goes beyond the schema. However, it doesn't disclose what the response contains or whether the endpoint requires authentication, though the output schema exists to cover return values.

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 front-loaded with the core purpose and endpoint, and the parameter list is organized. However, it is verbose: the 'watchnow' parameter explanation is a long block of repetitive text that could be condensed, and the 'Query parameter' placeholders for nine parameters add bulk without value. It earns a middle score for being structured but not tightly written.

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?

Given the tool has 15 optional parameters, an output schema, and annotations covering safety, the description covers the essential purpose and some parameter semantics. But it leaves significant gaps: no guidance on how to combine filters, no explanation of what 'extended' actually returns, and no mention of authentication requirements. For a complex list endpoint, this is adequate but not complete.

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

Parameters3/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. It does add meaning for several parameters: 'extended' is explained with a list of valid values, 'watchnow' has detailed value explanations, and 'start_at'/'end_at' have format requirements. However, many parameters (genres, subgenres, years, ratings, start_date, end_date, runtimes, countries, certifications) are only labeled 'Query parameter' with no additional semantics, leaving the agent to guess their format or allowed values.

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 playback progress' and includes the endpoint 'GET /sync/playback/movies', which clearly identifies the resource and action. It distinguishes itself from siblings like list_sync_collection_movies and get_sync_playback_by_type by focusing specifically on movie playback progress, though it doesn't explicitly name a sibling alternative.

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 provides the endpoint and parameter usage details, implying when to use it (to retrieve movie playback progress). However, it does not explicitly state when to use this tool versus alternatives like get_sync_playback_by_type or list_sync_progress_watched, nor does it mention any exclusions or prerequisites.

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