Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

get_movies_collected_by_period

Read-onlyIdempotent

Retrieve the most collected movies for a specified period (weekly, monthly, yearly, or all-time). Use optional filters to skip watched, collected, or watchlisted titles.

Instructions

Get the most collected movies.

GET /movies/collected/{period}

Args: period: Path parameter. extended: Extended information to include in the response. 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. ignore_watched: Ignore watched items. ignore_collected: Ignore collected items. ignore_watchlisted: Ignore watchlisted items.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
limitNo
periodYes
extendedNo
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

A3.5/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, and non-destructive behavior. The description adds genuinely useful behavioral context beyond the annotations, especially the pagination behavior: defaults vary, low default limits, and higher limits are clamped rather than rejected. It also discloses the ignore_* filter semantics, which helps an agent understand how results may be narrowed.

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

Conciseness4/5

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

The description is compact and front-loaded with the core purpose. The Args list is orderly and each parameter has a brief line. The endpoint line repeats the tool name somewhat, but overall the description earns its length without unnecessary fluff.

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 7-parameter tool with 0% schema coverage, the description leaves critical gaps. The required period parameter lacks any guidance on accepted values, and extended is undefined. An agent could not confidently construct a correct call purely from this description. The output schema exists, so return format is covered, but input semantics are not complete enough.

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 lists all seven parameters and gives meaningful details for page and limit, including clamping behavior. However, the required 'period' parameter is only described as 'Path parameter' with no valid values or format, and 'extended' is vague ('Extended information to include'), leaving important parameter semantics underspecified.

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 states a specific action and resource: 'Get the most collected movies.' combined with the endpoint 'GET /movies/collected/{period}'. This makes the tool's purpose identifiable and distinguishes it from movie 'watched', 'favorited', or 'played' period endpoints, though it does not explicitly name any sibling alternatives.

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?

Usage context is implied by 'most collected movies' and the period-based endpoint, but the description never explicitly states when to use this tool versus related endpoints like get_movies_watched_by_period or get_shows_collected_by_period. An agent can infer the use case, but there is no direct guidance or exclusion.

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