Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

list_sync_collection_media

Read-onlyIdempotent

Retrieve your synced media collection from Trakt. Filter by availability and paginate results to access movies and shows you have collected.

Instructions

Get media collection.

GET /sync/collection/media

Args: extended: Extended information to include in the response. available_on: 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.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
limitNo
extendedNo
available_onNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, but the description adds valuable behavioral details: pagination defaults (low default limit of 10), capping at endpoint maximum (250), and clamping rather than rejection. This goes beyond the annotations to inform the agent about response size behavior.

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 structured with the endpoint first, then a clean bullet-style list of parameters. It is concise and front-loaded with the purpose, keeping each parameter explanation short. No redundancy.

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?

This is a list tool with four parameters and many sibling tools. The description fails to clarify that this returns all media types (vs. type-specific siblings) or whether it includes episodes etc. It also doesn't mention the output schema's structure or any filters beyond the vague available_on. The agent could easily confuse it with list_sync_collection_movies or list_sync_collection_episodes.

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 explain parameters. It does explain 'page' and 'limit' clearly, and gives a vague 'Extended information' for extended. However, 'available_on' is merely described as 'Query parameter.' which adds no meaning beyond its name. Thus partial coverage with one unhelpful description.

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

Purpose3/5

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

The description states 'Get media collection' which is a verb+resource, but 'media collection' is vague and doesn't specify that it covers all media types (movies, shows, episodes) or how it differs from siblings like list_sync_collection_movies. It is not a tautology but lacks precision.

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?

No guidance is provided on when to use this tool versus the many type-specific siblings (list_sync_collection_movies, list_sync_collection_shows, etc.). The description does not mention alternatives or exclusions, leaving the agent to infer usage.

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