Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

create_sync_favorites_remove

Idempotent

Remove items from your Trakt favorites by specifying the resources in the request body. Use this to delete shows, movies, or other entries from your favorites list.

Instructions

Remove items from favorites.

POST /sync/favorites/remove

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.2/5.0
Behavior3/5

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

Annotations already cover the safety profile (readOnlyHint=false, idempotentHint=true, destructiveHint=false), and the description does not contradict them. It adds the endpoint (POST /sync/favorites/remove) and a workflow hint to read the matching GET or /schema endpoint first. It does not disclose effects, reversibility, or auth requirements, but with annotations present the bar is lower and the added context earns a pass.

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 front-loaded with the purpose line, followed by the endpoint and a terse args note. Each line earns its place; there is no filler or repeated schema content. Slightly formulaic in its 'Args:' layout but appropriately sized.

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?

Given a single opaque body parameter, the description's pointer to GET/schema is a practical workaround-tenacity . With an output schema present, return values need no explanation. The main gap is the absence of any comparison to sibling favorites tools (add/reorder/update), which would materially help an agent choose and construct the call correctly in this large sibling set.

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?

Schema coverage is 0%: the body property is an opaque object with additionalProperties:true and no description. The description compensates somewhat by identifying body as the 'request payload' and directing the agent to the matching GET or /schema endpoint for the expected fields. This is useful but gives no actual field-level semantics for this specific favorites-removal payload.

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 a specific verb and resource: 'Remove items from favorites.' This disambiguates the confusing 'create_' prefix in the tool name-new . It clearly signals a removal operation. However, it does not explicitly differentiate from siblings like create_sync_favorites (add) or update_sync_favorites, leaving the agent to infer the relationship from the name alone.

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?

There is no guidance on when to use this tool versus alternatives. The description does not mention that create_sync_favorites adds items, that reorder variants exist, or what makes removal distinct. Among a sibling set with add/reorder/update favorites variants, the agent gets only the implied usage from the verb 'Remove' and no exclusions or routing hints.

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