Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

update_sync_favorites

Idempotent

Update your Trakt favorites to match your current preferences by sending the updated list to the sync API.

Instructions

Update favorites.

PUT /sync/favorites

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

B3.3/5.0
Behavior3/5

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

Consistent with annotations: readOnlyHint=false matches the update verb, idempotentHint=true aligns with PUT semantics, and destructiveHint=false is compatible. The description adds the HTTP method and the field-discovery precondition, which is useful context beyond annotations. It does not, however, disclose whether the call replaces or merges existing favorites, a meaningful mutation behavior left unstated.

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?

Three short sentences, front-loaded with purpose and endpoint before parameter guidance. There is no fluff, and the discovery instruction earns its place. Minor redundancy between 'Update favorites' and 'PUT /sync/favorites' (verb vs. method) but negligible.

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?

Adequate for an open-world body given the output schema covers return values and annotations cover the safety profile. The description supplies the key missing piece (how to learn the body fields). Real gaps remain: no indication of replace-vs-merge semantics for a collection-level PUT, and no differentiation from the item-level sibling update_sync_favorites_by_list_item_id.

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 coverage is 0% and the single body param is an open-world object with additionalProperties=true. The description compensates meaningfully by labeling body as the request payload and directing the agent to the matching GET or /schema endpoint to discover expected fields. For an open-world body this is the right and sufficient guidance, though it names no concrete example fields.

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+resource ('Update favorites') plus the concrete endpoint (PUT /sync/favorites), so an agent knows this mutates the favorites resource. However, it does not distinguish itself from nearby siblings such as update_sync_favorites_by_list_item_id (item-level update) or create_sync_favorites, leaving the exact scope inferred from the name rather than stated.

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?

Contains only a prerequisite hint ('Read the matching GET or the /schema endpoint first'), which tells the agent what to inspect before calling, but gives no when-to-use vs. when-not-to-use guidance. It never explains when to choose this over update_sync_favorites_by_list_item_id, create_sync_favorites, or create_sync_favorites_reorder.

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