Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

update_sync_watchlist_by_list_item_id

Idempotent

Update a Trakt watchlist item by its list item ID. Supply the ID and a request payload to modify the entry.

Instructions

Update a watchlist item.

PUT /sync/watchlist/{list_item_id}

Args: list_item_id: List item ID. 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
list_item_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

Annotations already indicate a non-read, non-destructive, idempotent mutation, so the description adds little beyond the word 'Update' and the HTTP method PUT. It does not disclose side effects, authorization needs, or what happens when the item does not exist, which would be useful behavioral context beyond the 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 short, front-loaded with the core purpose, and structured with a clear endpoint line and labeled args. Every sentence contributes useful information, though the title is absent and the opening sentence is slightly redundant with the tool name.

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?

For a two-parameter update with an open-world request body and an output schema, the description provides enough to get started by pointing to GET and /schema for field discovery. It lacks guidance on tool selection and does not explain whether the body is a full replacement or partial update, but the annotations and output schema cover some of the missing context.

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?

With schema description coverage at 0%, the description partially compensates by naming both parameters and directing the agent to the matching GET or /schema endpoint to discover expected body fields. However, 'List item ID' and 'Request payload' add limited semantic value over the schema's own names and types.

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 clearly states the action (Update) and the resource (a watchlist item), and the endpoint path with {list_item_id} makes the targeted scope evident. It is distinguishable from related siblings like update_sync_favorites_by_list_item_id and update_sync_watchlist by naming the watchlist item specifically, though it does not explicitly call out those alternatives.

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 gives no guidance about when to choose this tool over sibling tools such as update_sync_favorites_by_list_item_id or update_sync_watchlist. It does advise reading the matching GET or /schema endpoint first, but that is request-preparation guidance, not tool-selection guidance.

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