Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

create_sync_ratings_remove

Idempotent

Delete ratings for shows and movies on Trakt. Submit the request payload to remove rating entries and update your sync data.

Instructions

Remove ratings.

POST /sync/ratings/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

C2.7/5.0
Behavior3/5

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

Annotations declare readOnlyHint=false, destructiveHint=false, idempotentHint=true, and openWorldHint=true. The description adds the endpoint and a note to read the matching GET or /schema endpoint first, which is useful context for understanding the request payload. However, it does not disclose what 'remove' does beyond the obvious, whether it is a bulk removal, or what the response contains. The description does not contradict the annotations, but it also does not add much behavioral depth beyond what the annotations already imply.

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 and front-loaded with the core action 'Remove ratings.' The endpoint and the pointer to the GET/schema endpoint are useful and concise. It earns its place, though the 'Args: body' line is somewhat redundant with the input schema.

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

Completeness2/5

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

Given the tool has one opaque body parameter, no output schema details in the description, and a confusing name, the description is not complete enough. The pointer to the GET/schema endpoint is a good start, but an agent still lacks information about what ratings are removed, whether the operation is scoped to a user, and what a successful response looks like. The output schema exists but the description does not summarize it.

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

Parameters2/5

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

Schema description coverage is 0%, and the only parameter is 'body' with additionalProperties: true, so the schema provides no field-level detail. The description tells the agent to read the matching GET or /schema endpoint to see expected fields, which is a helpful pointer, but it does not describe the body structure, required fields, or example payload. With 0% coverage, the description should compensate more than it does.

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 says 'Remove ratings' and gives the endpoint POST /sync/ratings/remove. This states a clear verb and resource, but the tool name 'create_sync_ratings_remove' is confusingly prefixed with 'create_' while the description says 'Remove'. It does not distinguish itself from the sibling create_sync_ratings (which likely adds ratings) beyond the endpoint path, and the name/title mismatch adds ambiguity.

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 on when to use this tool versus alternatives. It does not mention that create_sync_ratings is the counterpart for adding ratings, nor does it explain the relationship to get_sync_ratings_by_type_by_rating or other sync tools. The only hint is the endpoint path, which is not enough for an agent to decide when to call this tool.

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