Skip to main content
Glama

create_player_playback_set_view_offset

Idempotent

Set the playback position to a specific byte offset for stream seeking in Plex.

Instructions

Player Set View Offset.

POST /player/playback/setViewOffset

Args: offset: The byte offset for stream seeking

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.5/5.0
Behavior2/5

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

Annotations provide idempotentHint=true, readOnlyHint=false, and destructiveHint=false, and the description does not contradict them. It adds only the small detail that offset is a byte offset for stream seeking, but gives no behavioral context beyond that—no mention of what happens when offset is null, whether an active session is required, or side effects of setting the offset. With the annotations carrying the safety profile, the description adds minimal value.

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 short, front-loaded with the name and endpoint, and lists the sole argument concisely. There is no filler or redundant prose, though a bit more behavioral context could be added without hurting brevity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter tool with an output schema, the essentials are present. However, it omits useful context such as the need for an active playback session, what 'view offset' means relative to seeking, and how this relates to create_player_playback_seek. It is minimally adequate but not complete.

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?

Schema description coverage is 0%, so the description must compensate. It does add meaning by clarifying that offset is a byte offset used for stream seeking, which supplements the bare integer/null schema type. This is useful, though it does not explain units/format fully beyond 'byte offset' or the effect of the default null.

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 names the verb (set) and resource (view offset) and adds that it is a byte offset for stream seeking. However, the description largely restates the tool name ('Player Set View Offset' vs. create_player_playback_set_view_offset) and does nothing to distinguish this from the very similar sibling create_player_playback_seek, which appears to serve the same seeking purpose.

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. This is especially problematic because sibling create_player_playback_seek appears to overlap with this tool's function, and the description gives no condition, prerequisite (e.g., an active playback session/play queue), or reason that would route an agent to this tool instead.

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