Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

delete_comments_by_id_like

DestructiveIdempotent

Remove your like from a Trakt comment by providing the comment's ID. This clears the like status on that comment.

Instructions

Remove like on a comment.

DELETE /comments/{id}/like

Args: id: The id/slug of the resource.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior3/5

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

The description aligns with annotations (destructiveHint=true, readOnlyHint=false) and adds the specific target: it removes the like, not the comment itself. It does not add side-effect context such as auth requirements or behavior when no like exists, but the annotations already carry much of the safety profile.

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 core action and HTTP endpoint stated immediately. The Args block is somewhat redundant with the schema, but the entire description is short, scannable, and free of filler.

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

Completeness4/5

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

For a one-parameter destructive operation with annotations and an output schema, the description provides enough to invoke it correctly: the resource, HTTP method, and parameter. It lacks explicit alternative routing and deeper side-effect detail, but those are not required for basic invocation.

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?

The single required id is described as 'id/slug of the resource,' which adds slug format beyond the schema's bare 'Id' title, and the endpoint path clarifies that the id belongs to the comment. It does not explicitly say 'comment id' in the Args block, leaving some ambiguity, but it is sufficient for a single-parameter tool.

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

Purpose5/5

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

The description begins with 'Remove like on a comment,' stating a specific verb and resource, and reinforces it with the endpoint 'DELETE /comments/{id}/like'. This clearly distinguishes it from siblings like create_comments_by_id_like, delete_comments_by_id, and delete_comments_by_id_reactions_by_reaction_type.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The intended use case is implied by the action: an agent can infer this tool is for removing a like from a comment. However, the description does not explicitly mention alternatives or state when not to use it, so it stops short of full routing 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