Skip to main content
Glama

create_player_playback_set_rating

Idempotent

Set a rating value for the media currently playing in Plex. Update the active playback item's rating directly through the player playback endpoint.

Instructions

Player Set Rating.

POST /player/playback/setRating

Args: rating: The rating value to set

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ratingNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.2/5.0
Behavior2/5

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

Annotations already indicate idempotentHint=true, destructiveHint=false, and readOnlyHint=false, so the mutation nature is partially covered. The description adds no behavioral context beyond 'set rating'—it does not disclose whether this affects persisted user data, whether it requires an active playback context, or what side effects occur. It neither contradicts annotations nor enriches them.

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

Conciseness3/5

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

The description is compact and front-loads the endpoint, which is structurally good. However, the 'Args' block merely repeats the schema property and gives no new information, so the brevity is under-specification rather than efficient conciseness.

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?

For a one-parameter tool, the description is almost adequate structurally, but it leaves critical gaps: the meaning and valid values of 'rating', the target of the rating, and prerequisites. The presence of an output schema reduces the need to describe return values, but the core context for correct invocation is missing.

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

Parameters1/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 for the undocumented 'rating' parameter. It only says 'rating: The rating value to set', which is a tautology and adds no meaning about scale, allowed range, meaning of null, or how the value is applied. The description provides essentially no semantic information beyond the parameter name.

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 states a specific action ('Set Rating') and the HTTP endpoint, so an agent can tell this is a playback rating write. However, it does not clarify what the rating applies to (current item, playback session, user library) and the phrase 'Player Set Rating' is closer to a title than an explanatory purpose. It is clear but lacks sibling differentiation beyond the endpoint itself.

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 related tools such as update_rate, create_player_playback_set_state, or create_player_playback_set_view_offset. The endpoint is given, but no context such as 'use this when the user rates the currently playing item' or 'requires an active playback session' is provided.

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