Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

list_users_hidden_dropped

Read-onlyIdempotent

Retrieve a user's hidden dropped shows. Use this to identify which dropped shows are currently hidden from your Trakt view, enabling you to manage your hidden list.

Instructions

Get dropped shows.

GET /users/hidden/dropped

Args: 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.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
limitNo
extendedNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false. The description adds pagination clamping/default behavior, which is useful beyond the annotations, but it does not discuss authentication, response envelope, or other operational traits.

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 statement 'Get dropped shows.' The parameter list is readable, and the pagination note is valuable despite being generic.

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?

The tool has an output schema and safe read-only annotations, so less return-value documentation is needed. Still, the description leaves gaps around the meaning of 'dropped' in this context, whose users are affected, and what values 'extended' accepts.

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 carries the burden. It gives meaning to all three parameters, with useful pagination detail, but 'extended: Extended information to include in the response' is largely tautological and does not clarify valid values or behavior.

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 'Get dropped shows.' which is a clear verb+resource pairing and matches the tool name and endpoint. It does not explicitly differentiate from sibling hidden-section tools, but the specific 'dropped shows' scope is more precise than the name alone.

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 on when to use this tool versus alternatives such as get_users_hidden_by_section or list_users_hidden_progress_watched. The intended context is only implied by the endpoint path and 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