Skip to main content
Glama

create_player_playback_set_streams

Idempotent

Select the audio, subtitle, and video streams to use during Plex playback, resolving incorrect or undesired tracks.

Instructions

Player Set Streams.

POST /player/playback/setStreams

Args: audio_stream_id: The unique identifier of the audiostream subtitle_stream_id: The unique identifier of the subtitlestream video_stream_id: The unique identifier of the videostream

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
audio_stream_idNo
video_stream_idNo
subtitle_stream_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.8/5.0
Behavior3/5

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

Annotations already define the safety profile (readOnlyHint=false, destructiveHint=false, idempotentHint=true), so the bar for the description is lower. The description adds only the HTTP endpoint and a parameter list; it never states what invoking this actually does to playback, such as switching the active tracks of the current session. There is no contradiction between the description and the annotations.

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 the endpoint is front-loaded, which is helpful. However, the Args section largely duplicates the input schema's titles and property names, following a docstring template rather than an agent-facing explanation. Some lines earn their place, but several simply restate structured data.

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 player-control mutation, the core context is missing: what the call does to the current playback session and how it relates to the sibling single-stream setters. The output schema and annotations cover return values and safety semantics, but the description alone does not give an agent enough to invoke the tool with confidence.

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 carries the full burden, but the Args block only paraphrases each parameter as 'the unique identifier of the X stream', adding little beyond the parameter names and schema titles. It does not clarify that all three are optional and nullable, where the stream IDs are obtained from, or whether a partial update with only one stream specified is supported.

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 identifies the operation and resource: setting audio, subtitle, and video streams via POST /player/playback/setStreams, and the Args block lists exactly which stream types are involved. This distinguishes it from unrelated playback actions like set_state or set_rating. However, 'Player Set Streams' is a fragment rather than a complete sentence stating the effect, and it does not differentiate from the sibling single-stream setters (create_player_playback_audio_stream, create_player_playback_video_stream, create_player_playback_subtitle_stream).

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?

No when-to-use or when-not-to-use guidance is provided. The description never explains when to call this combined setter versus the sibling single-stream tools, nor does it state prerequisites such as an active playback session. An agent is left to infer the appropriate circumstances entirely from the tool name.

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