Skip to main content
Glama

create_player_playback_set_state

Idempotent

Control your Plex player's playback by setting its state to play, pause, or stop.

Instructions

Player Set State.

POST /player/playback/setState

Args: state: The desired playback state

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
stateNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.4/5.0
Behavior2/5

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

The description adds no behavioral context beyond what the annotations already state — it neither discloses side effects, what happens to the current playback state, whether a session is required, nor what state values are acceptable. readOnlyHint=false, idempotentHint=true, and destructiveHint=false are consistent with the description, so there is no contradiction, but the description carries none of the behavioral burden itself.

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 short and scannable, with the title and endpoint front-loaded. However, its brevity comes from vacuousness rather than efficiency — the 'Args' section restates the parameter with a near-tautological gloss, so the compactness earns no credit beyond basic scannability.

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?

Although the tool is structurally simple (one optional param, output schema present), the description is missing the single most important piece of information: the semantics of 'state' and its possible values. Without it, the agent cannot invoke the tool correctly, especially given the overlap with play/pause/stop siblings. The annotations and output schema do not fill this gap.

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

Parameters2/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 'state' parameter. It provides only a one-line gloss ('The desired playback state'), which tells the agent almost nothing: no valid values, format, enum options, or examples. For a parameter that is the sole input and defaults to null, this is a meaningful shortfall.

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 verb+resource ('Player Set State' with the POST /player/playback/setState endpoint), so a basic purpose is identifiable. However, among a large family of playback siblings (play, pause, stop, seek, step_forward, mute, etc.), 'set state' is the most ambiguous one — the description never clarifies what 'state' actually means or how it differs from those siblings. An agent cannot tell when to pick this over pause/play/stop.

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?

Zero usage guidance is provided. There is no mention of when to use this tool vs alternatives, no prerequisites (e.g., active playback session, player resource), and no exclusions. Given roughly 20 similarly-named create_player_playback_* siblings, the absence of routing guidance is a serious gap.

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