Skip to main content
Glama

create_player_playback_play_media

Idempotent

Start media playback on a Plex device by providing the media key, optional byte offset, and target machine identifier. Directly triggers playMedia endpoint for immediate streaming.

Instructions

Player Play Media.

POST /player/playback/playMedia

Args: key: The key of the media item to play offset: The byte offset for stream seeking machine_identifier: The machine identifier of the target device

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyNo
offsetNo
machine_identifierNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3/5.0
Behavior2/5

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

The annotations already convey that the operation is not read-only, is idempotent, and is not destructive, but the description adds no behavioral context about side effects, required device state, or what occurs when playback is triggered. It neither reinforces nor contradicts the annotations, yet it fails to disclose any operation-specific behavior beyond the endpoint name.

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

Conciseness4/5

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

The description is compact and scannable, with an endpoint line followed by a concise argument list. The opening title 'Player Play Media' is somewhat redundant with the tool name, but there is no wasted prose and the structure is efficient.

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?

While the output schema and annotations cover some context, the description omits when to prefer this tool over the many playback-related siblings, any prerequisites, and the expected outcome of invoking the action. An agent could not reliably decide among create_player_playback_play_media, create_player_playback_play, and related tools based solely on this text.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description's Args section is the only source of parameter meaning. It compensates well by explaining key as the media item key, offset as the byte offset for stream seeking, and machine_identifier as the target device identifier, which is meaningful beyond the bare schema property names.

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 action as 'Player Play Media' and provides the endpoint POST /player/playback/playMedia, making it clear this tool starts media playback using a key, optional offset, and target machine identifier. However, it does not explicitly differentiate itself from sibling playback-control tools such as create_player_playback_play or create_player_playback_seek.

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?

The description offers no guidance on when to use this tool versus any of the many sibling playback tools, nor does it mention prerequisites or alternative tools. It only lists the endpoint and arguments, leaving the selection decision entirely to inference.

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