Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

get_users_syncs_by_id_skipped

Read-onlyIdempotent

Retrieve skipped sync items for a Trakt user by sync ID. Use pagination parameters to control results.

Instructions

Get skipped sync items.

GET /users/syncs/{id}/skipped

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 establish read-only, idempotent, non-destructive behavior. The description adds meaningful behavioral context: id is scoped to the authenticated user, the id segment has different matching behavior, and pagination defaults/caps are explained. This goes beyond what annotations provide, though it stops short of describing the response shape or edge cases.

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 well-structured and front-loaded with the core purpose. The endpoint and argument explanations are relevant. The pagination sentence is slightly dense but informative, and no part feels redundant with the schema.

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?

With a solid output schema and strong annotations, the description provides enough parameter and behavior detail to invoke the tool correctly. It covers pagination, auth scoping, and id semantics. The main gap is the absence of explicit usage guidance and the mildly irrelevant non-numeric segment remark.

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?

Schema description coverage is 0%, so the description carries the burden of explaining parameters. It covers id, page, and limit with useful context: id's numeric behavior and user scoping, page meaning, and limit defaults/capping. The 'non-numeric segment' note is somewhat confusing given id is typed as integer, which prevents a 5.

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?

States a clear verb and resource: 'Get skipped sync items.' This identifies the tool's purpose precisely. However, it does not explicitly differentiate it from sibling tools like get_users_syncs_by_id or get_users_syncs_by_id_paused, so it falls 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?

The description implies usage through the resource name but gives no explicit guidance about when to choose this tool over alternatives. No sibling comparisons, exclusions, or contextual triggers are provided. The pagination notes are useful but do not address tool selection.

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