Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

list_users_hidden_progress_watched

Read-onlyIdempotent

Retrieve hidden watched progress items from a user's Trakt profile to identify and manage content excluded from progress lists.

Instructions

Get hidden progress items.

GET /users/hidden/progress_watched

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. type: Query parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
typeNo
limitNo
extendedNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/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, so the safety profile is covered. The description adds some useful context about pagination defaults and clamping, but it does not disclose auth requirements, scope of 'hidden' items, or any endpoint-specific behavior beyond the parameter docs.

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 purpose is front-loaded and the args are clearly structured. However, the 'type' line is filler, and the pagination paragraph reads like generic boilerplate rather than endpoint-specific guidance, so not every line earns its place.

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?

With an output schema and read-only annotations, the description is partially complete for a simple GET call. The main gaps are the undefined `type` values, the lack of explanation of what 'hidden progress watched' means, and no guidance distinguishing this from sync progress endpoints.

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 gives meaningful explanations for extended, page, and especially limit with defaults and clamping behavior, but 'type: Query parameter' is tautological and provides no information about valid values or meaning.

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 clear verb and resource: 'Get hidden progress items' with the endpoint GET /users/hidden/progress_watched. The name and first line convey the purpose, but the description does not differentiate it from closely related siblings such as list_sync_progress_watched or list_users_hidden_dropped.

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 about when to use this tool versus alternatives. It does not mention list_sync_progress_watched, list_users_hidden_dropped, or any condition for choosing this endpoint, so the agent is left to infer usage from the name alone.

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