Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

create_scrobble_stop

Idempotent

Stop scrobbling playback of a movie or show in Trakt when you finish watching in a media center. Sends a stop request to update your watch history.

Instructions

Stop or finish watching in a media center.

POST /scrobble/stop

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?

Annotations already cover idempotent and non-destructive hints, and the description adds that this operation stops or finishes watching. However, it does not disclose auth requirements, response behavior, or what happens to an active scrobble state.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded with the action and endpoint, followed by a useful payload-discovery instruction. There is no filler or redundant elaboration.

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?

The /schema pointer and annotations provide a reasonable basis for invoking the tool, especially with an open-world body parameter and an output schema present. Still, it lacks usage differentiation among scrobble tools and any mention of prerequisites or side effects, so it is not fully self-sufficient.

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 schema only exposes an opaque 'body' object with additionalProperties=true, so the description must compensate. It correctly identifies body as the request payload and instructs the agent to consult the matching GET or /schema endpoint, but it does not list or exemplify expected 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?

The description states a specific action, 'Stop or finish watching in a media center', and provides the endpoint POST /scrobble/stop. It semantically distinguishes itself from siblings like create_scrobble_start and create_scrobble_pause, though it does not explicitly reference them.

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 such as create_scrobble_pause or create_scrobble_start. The only directive is to read the matching GET or /schema endpoint first, which addresses payload discovery rather than tool selection.

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