Skip to main content
Glama

create_player_playback_volume

Idempotent

Set the playback volume level for a Plex player. Adjust audio output by providing a specific integer level.

Instructions

Player Volume.

POST /player/playback/volume

Args: level: The level

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
levelNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

D1.6/5.0
Behavior2/5

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

The description discloses the endpoint and the level argument but never states the effect of the call, such as 'sets the current player's volume.' It also omits whether the volume is absolute or relative, what range is valid, and what the response indicates. Annotations provide some safety context (idempotent, non-destructive) but do not describe actual runtime behavior.

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

Conciseness2/5

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

The description is short, but shortness is under-specification, not conciseness. 'Player Volume.' restates the name, 'Args' duplicates schema information, and there is no sentence explaining the operation. The structure provides no useful front-loaded information beyond the endpoint.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Even though this is a single-parameter tool with annotations and an output schema, the critical information needed to call it correctly is missing: what level means, what values are valid, and what happens when it is omitted or null. The description is not sufficient for reliable selection or invocation.

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 coverage is 0%, so the description carries the full burden of explaining the level parameter. It only says 'level: The level,' which adds no meaning beyond the parameter name. There is no unit, range, acceptable values, or explanation of what a null/default level does.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description is essentially 'Player Volume.' followed by the endpoint, which is a tautology of the tool name rather than a stated action. It does not say that this tool sets the playback volume to a specified level, so an agent must infer the purpose from the POST verb and parameter.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines1/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided about when to use this tool instead of related sibling tools such as create_player_playback_mute, create_player_playback_unmute, or create_player_playback_set_parameters. There is no mention of prerequisites, active player requirements, or contexts where volume adjustment is appropriate.

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