Skip to main content
Glama

create_player_playback_seek

Idempotent

Jump to a specific position in current Plex playback by setting an offset in milliseconds. Use to skip or rewind content precisely.

Instructions

Player Seek.

POST /player/playback/seek

Args: offset: Target offset in milliseconds

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
offsetNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

Annotations indicate this is a mutating, idempotent operation, but the description adds no behavioral context such as whether the seek is absolute or relative, whether it affects an active playback session, or what happens when offset is null. The endpoint and 'Seek' label essentially restate the tool 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 front-loads the action, endpoint, and argument. 'Player Seek.' is slightly redundant with the tool name, but there is no padding or irrelevant information.

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 simple one-parameter tool this is nearly sufficient, but the lack of offset semantics and the presence of many similar playback siblings leave important context missing. The output schema covers return values, so no credit is lost there, but an agent could easily confuse this with skip_to or set_view_offset.

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

Parameters3/5

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

With 0% schema description coverage, the description adds the useful unit ('milliseconds') for offset. It does not explain whether the offset is from the start of the item, whether null means 'no seek', or any range constraints.

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 the action ('Seek') and resource ('player playback') and gives the endpoint. It is clear enough, but it does not explicitly distinguish this from sibling tools like create_player_playback_set_view_offset, create_player_playback_skip_to, or create_player_playback_skip_by.

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 guidance is given on when to call seek versus the many sibling playback-control tools. The description only repeats the endpoint and argument, leaving the agent to infer the appropriate context.

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