Skip to main content
Glama

create_player_playback_video_stream

Idempotent

Creates a video playback stream by providing a stream ID, enabling playback on your Plex player.

Instructions

Player Video Stream.

POST /player/playback/videoStream

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

C2.4/5.0
Behavior2/5

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

The annotations already provide readOnlyHint=false, idempotentHint=true, and destructiveHint=false, and the description adds no behavioral detail beyond the endpoint. It does not disclose side effects, such as whether creating the stream starts playback, replaces an existing stream, or requires an active playback session, which matters for a create-style operation.

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 text is short and free of filler, but the opening line 'Player Video Stream' is redundant with the tool name and does not earn its place. The endpoint and args are laid out cleanly, so the structure is acceptable but not exemplary.

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 tool that creates a player playback video stream, the description is incomplete. An agent cannot tell what the operation accomplishes, how to obtain or use stream_id, or how this relates to the playback session and sibling player controls. The presence of an output schema may cover return shape, but the missing usage and behavioral context is a significant 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?

The description says stream_id is 'the unique identifier of the stream,' which adds minimal meaning to the schema's title and type. With schema description coverage at 0%, this does not compensate enough: it omits how to obtain stream_id, whether a null value is meaningful, and what the practical constraints are.

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 identifies the resource ('Player Video Stream') and endpoint, but it never states the action in verb form; the create behavior must be inferred from the tool name. It is not fully tautological because the endpoint adds some context, but it does not clearly explain what creating a video stream entails or how it differs from the many sibling playback tools.

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 no guidance about when to use this tool versus the many create_player_playback_* siblings such as create_player_playback_set_streams, create_player_playback_audio_stream, or create_player_playback_play. No prerequisites, alternatives, or exclusion conditions are mentioned.

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