Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

create_sync_favorites

Idempotent

Add shows, movies, or other items to your Trakt favorites using the sync favorites endpoint. Include the required body payload to specify the content to favorite.

Instructions

Add items to favorites.

POST /sync/favorites

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.9/5.0
Behavior2/5

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

The description adds no behavioral context beyond the annotations. It repeats a mutating action ('Add') and the POST method, but annotations already indicate not read-only, not destructive, idempotent, and open-world. No additional side effects, authentication needs, or rate limits are disclosed.

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, puts the purpose first, and has no filler. The endpoint line and body instruction are each informative, so every sentence earns its place.

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?

The description is not self-contained: it doesn't identify which GET is 'matching', doesn't explain the relationship to update/remove/reorder siblings, and leaves the body contract to an external schema discovery step. Annotations and output schema help, but an agent still lacks enough context to call this reliably without extra lookups.

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 says body is an open object, and the description adds that body is the request payload and directs the agent to the matching GET or /schema endpoint for actual fields. This is useful for an open-world body but does not enumerate any specific expected fields, so it only partially compensates for 0% schema coverage.

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 'Add items to favorites' and gives the endpoint POST /sync/favorites, making the core action and resource unambiguous. It doesn't explicitly contrast with sibling tools like update_sync_favorites or remove variants, so it falls short of the strongest differentiation.

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?

No guidance is given about when to use this tool versus the many related tools (create_sync_favorites_remove, create_sync_favorites_reorder, update_sync_favorites, etc.). The only instruction is to read a GET/schema endpoint for body fields, which is about payload construction, not 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