Skip to main content
Glama

create_player_playback_audio_stream

Idempotent

Creates an audio playback stream using a given stream ID, enabling Plex to send audio to the player.

Instructions

Player Audio Stream.

POST /player/playback/audioStream

Args: stream_id: The unique identifier of the stream

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
stream_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

D1.7/5.0
Behavior2/5

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

Annotations declare readOnlyHint=false, openWorldHint=true, idempotentHint=true, destructiveHint=false. The description adds nothing beyond that—no information about what happens when a stream is created, whether it requires an active playback session, how it interacts with state, or what the response contains. With annotations present, the bar is lower, but the description still fails to disclose any behavioral nuance.

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 extremely short, which is conciseness, but it lacks structure. It starts with a vague title, then an endpoint, then an 'Args' block. The information is not front-loaded with a clear purpose, and the endpoint is a redundant detail. The brevity does not translate to effectiveness.

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?

For a tool that creates an audio playback stream, the description is grossly incomplete. It doesn't explain what 'audio stream' means, what the stream_id refers to, whether it returns a stream URL, or how it fits into the playback workflow. With an output schema present, the description still leaves the agent without enough context to call this tool correctly or understand its effects.

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 coverage is 0% (the schema has no descriptions for properties). The description says 'stream_id: The unique identifier of the stream' which barely adds meaning beyond the parameter name. It doesn't clarify the type of stream, how the ID is obtained, or whether null is acceptable (since the schema allows null). The description fails to compensate for the lack of schema documentation.

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 a title 'Player Audio Stream' and an endpoint, with no verb or clear action. It doesn't state what the tool actually does (e.g., create a playback stream for audio), nor does it distinguish it from sibling tools like create_player_playback_video_stream or create_player_playback_set_streams. The only concrete detail is the parameter definition, which is minimal.

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?

There is no guidance on when to use this tool versus alternatives. No mention of scenarios, prerequisites, or relationships to other playback operations. The description provides zero contextual direction for an agent deciding between this and sibling tools.

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