Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

create_sync_favorites_reorder

Idempotent

Reorder favorited Trakt items by submitting the desired order to the sync endpoint, updating your saved favorites sequence.

Instructions

Reorder favorited items.

POST /sync/favorites/reorder

Args: body: Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.2/5.0
Behavior2/5

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

Annotations already indicate the tool is not read-only (readOnlyHint=false), is idempotent (idempotentHint=true), and not destructive (destructiveHint=false). The description adds a note about reading the schema first, which is more about input preparation than behavioral transparency. It does not disclose any side effects, ordering semantics, or whether the operation replaces or appends the entire list. Minimal value added over annotations.

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 very short and to the point: a one-line purpose, the endpoint, and a brief note on the body. It is front-loaded with the action and does not waste words. However, it is so sparse that some might argue it is under-specified rather than concise, but for what it says, it is efficiently structured.

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

Completeness1/5

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

For a reorder operation, the description is completely inadequate. It does not explain what the body should contain (e.g., an ordered list of IDs), how to specify the new order, or any expected response. It points to the schema but does not provide enough context for an agent to correctly construct the request. With an open schema (additionalProperties true) and no parameter descriptions, the description fails to give any useful operational context.

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

Parameters1/5

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

The only parameter is 'body', described merely as 'Request payload' with a pointer to look at a GET or schema endpoint. This adds no actual meaning about the structure or required fields; it essentially defers all semantics to an external resource. Given schema coverage is 0%, the description should compensate by explaining what the body contains, but it does not.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb ('Reorder') and resource ('favorited items'), but it is vague about scope. It does not explicitly say these are 'sync favorites' (only the endpoint reveals that), and it does not distinguish itself from other reorder tools like create_sync_watchlist_reorder or create_users_by_id_lists_by_list_id_items_reorder. The purpose is clear enough for a simple action, but not specific enough to differentiate among the many sibling tools.

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 only instruction is to read a GET or /schema endpoint for the request payload, which is a generic prerequisite, not a usage guideline. There is no mention of prerequisites, when to avoid it, or any exclusions.

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