Skip to main content
Glama

create_player_playback_set_parameters

Idempotent

Set shuffle, repeat, and volume on your current Plex player to control playback behavior.

Instructions

Player Set Parameters.

POST /player/playback/setParameters

Args: shuffle: Whether to enable shuffle mode repeat: The repeat mode to set volume: The volume level to set

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
repeatNo
volumeNo
shuffleNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.6/5.0
Behavior2/5

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

Annotations indicate this is a write operation (readOnlyHint=false), non-destructive, and idempotent, but the description adds no behavioral context beyond the bare statement of setting parameters. It does not describe what happens when these parameters are set (e.g., immediate effect on playback, persistence, or side effects). Since annotations already carry the safety profile, the description adds little.

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 very short and to the point, with no fluff. It includes the endpoint, which is useful, and a clear parameter list. However, it omits essential context (usage, behavioral details, parameter constraints), so while concise, it does not adequately earn its place by adding the necessary guidance.

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 tool has 3 optional parameters, an existing output schema, and many similar sibling tools, yet the description does not explain how to call it correctly. It lacks parameter value ranges, which repeat modes are supported, the meaning of integer shuffle, and how it relates to other player control tools. The description is far from complete for an agent to use it reliably.

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?

With 0% schema description coverage, the description must compensate for the schema's lack of explanation. It gives one-line meanings for each parameter (e.g., shuffle = 'Whether to enable shuffle mode', repeat = 'The repeat mode to set', volume = 'The volume level to set'), but it does not specify valid values, ranges, units, or what the repeat modes are. The shuffle description implies a boolean but the schema allows integer, creating ambiguity. The added semantics are minimal and insufficient.

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 states it sets player playback parameters (shuffle, repeat, volume), which distinguishes it from sibling tools that set other aspects like rating or state. The verb is 'set' and the resource is implied by the endpoint and parameter list. It is clear but could be more explicit about the target (e.g., the currently active player session).

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 absolutely no guidance on when to use this tool versus the many sibling tools such as create_player_playback_volume, create_player_playback_set_state, or create_player_playback_set_rating. The description does not mention alternatives or exclusionary conditions, leaving the agent to infer the scope from the parameter names 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