Skip to main content
Glama

create_actions_add_to_watchlist

Idempotent

Add any movie or show to your Plex watchlist by providing its URI, ensuring you can track content for later viewing.

Instructions

Add to Watchlist.

POST /actions/addToWatchlist

Args: uri: The URI of the item to add or remove

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uriNo

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 indicate readOnlyHint=false, so the mutation aspect is known. The description adds the specific target of the mutation (the watchlist) and the HTTP endpoint, but does not explain side effects, authorization needs, or what happens when uri is null. It provides some context beyond annotations but not rich behavioral detail.

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 purpose. The endpoint and parameter line are compact, though the 'add or remove' phrase adds confusion rather than value. Overall it is concise and readable.

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?

For a single-parameter tool with annotations and an output schema, the description is minimally adequate. It identifies the action and parameter but misses usage guidance and contains an ambiguous parameter description. These gaps make it viable but not fully complete.

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 description coverage is 0%, so the description must compensate. It does clarify that 'uri' is the URI of the item involved, which is meaningful. However, saying 'add or remove' is confusing and contradicts the tool's stated purpose, and it does not clarify the URI format or the effect of the default null value.

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 first line 'Add to Watchlist' states a specific verb and resource, and the endpoint /actions/addToWatchlist reinforces the action. It is distinguishable from the sibling create_actions_remove_from_watchlist. However, the Args line says the URI is for the item 'to add or remove', which introduces ambiguity about whether this tool also removes items.

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 create_actions_remove_from_watchlist or any other alternative. It does not state prerequisites, exclusions, or a preferred context. An agent must infer usage from the name alone.

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