Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

list_sync_collection_minimal_shows

Read-onlyIdempotent

Retrieve a minimal list of shows from your Trakt collection, optionally filtered by streaming availability.

Instructions

Get minimal show collection.

GET /sync/collection/minimal/shows

Args: available_on: Query parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
available_onNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior. The description adds no incremental behavioral context—no mention of return shape, pagination, authentication, or rate limits—so it contributes nothing beyond the annotations.

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

Conciseness5/5

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

The description is extremely concise and front-loaded: it gives the purpose, the HTTP endpoint, and the parameter list in a single tight structure with no redundant text.

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's simplicity, the presence of an output schema, and strong annotations, the description is minimally sufficient. However, the unexplained available_on parameter and the lack of any differentiation from similar sync collection tools make it incomplete for an agent to confidently select and invoke it correctly.

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%, and the description only labels available_on as a 'Query parameter' without explaining its meaning, allowed values, or format. This provides negligible value over the schema's own property name, type, and default.

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 verb ('Get') and resource ('minimal show collection'), clearly identifying the operation. However, it does not explain what 'minimal' means or differentiate it from the similar sibling list_sync_collection_shows, so it stops short of a 5.

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 alternatives. The sibling tools list_sync_collection_shows, list_sync_collection_minimal_episodes, and list_sync_collection_minimal_movies exist, but the description gives no criteria for choosing this one.

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