Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

get_users_syncs_by_id_paused

Read-onlyIdempotent

Retrieve paused items from a specific Trakt sync by ID, with optional pagination.

Instructions

Get paused sync items.

GET /users/syncs/{id}/paused

Args: id: The numeric sync id, scoped to the authenticated user. A numeric segment hits a single sync; a non-numeric segment is the filtered list. 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
idYes
pageNo
limitNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so the description correctly avoids restating those. It adds useful behavioral details: id is scoped to the authenticated user, pagination defaults (often 10) and maximums (often 250) with clamping rather than rejection. These go beyond what annotations provide and help the agent understand response limits and id resolution.

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 well-structured: a one-line summary, the HTTP path, and a list of parameters with explanations. The pagination details are slightly verbose but necessary for correct invocation. No fluff or repetition; it earns its space.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only paginated endpoint with an output schema, the description covers the essential invocation details: id semantics, pagination behavior, and auth scoping. It doesn't explain what a 'paused sync item' means, but that is domain-specific and unlikely to be ambiguous given the endpoint. The description is sufficient for an agent to call it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has zero description coverage, so the description must carry the semantic load. It explains the id parameter thoroughly (numeric vs non-numeric segments, scoping), and provides pagination semantics (page number, limit defaults, clamping). This adds significant meaning beyond the raw schema types and defaults, though page is only trivially described as 'The page number to retrieve'.

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 paused sync items' with a clear verb and resource, and the endpoint path is included. It differentiates from siblings like get_users_syncs_by_id_skipped through the 'paused' qualifier, though it doesn't explicitly contrast with them. The purpose is specific and unambiguous, though it could be slightly more detailed about what constitutes a 'paused sync item'.

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?

The description provides no guidance on when to use this tool versus alternative sync endpoints (e.g., get_users_syncs_by_id, get_users_syncs_by_id_skipped). It lacks any 'when to use' or 'when not to use' context, leaving the agent to infer from the name alone. The id semantics note ('numeric vs non-numeric') is about parameter behavior, not selection criteria.

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