Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

create_items_by_id_play

Idempotent

Track or update listening progress for a specific library item by sending a play event to its endpoint, enabling accurate resume and playback state management.

Instructions

Create or act on items play.

POST /api/items/{id}/play

Args: id: Path parameter. body: Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
bodyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.6/5.0
Behavior2/5

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

Annotations already convey idempotentHint, readOnlyHint, and destructiveHint, and the description adds little behavioral context beyond the endpoint. It does not mention side effects, authentication requirements, or what happens to playback state, so the description adds minimal value over the annotations.

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: endpoint, args, and a discovery pointer. The opening phrase 'Create or act on items play' is awkward, but every line serves a purpose and there is no unnecessary filler.

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?

The core action is left ambiguous and the description does not place the tool among its many siblings. The GET/schema advice helps with the body, but an agent still lacks a clear understanding of what the play operation does and when to choose it over the episode-specific sibling.

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?

The schema only provides types, so the description usefully clarifies that id is a path parameter and body is the request payload. It also points the agent to the GET or /schema endpoint to discover body fields, which partially compensates for 0% schema description coverage, but actual body fields remain undisclosed.

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 endpoint and HTTP method, so it identifies the resource as items/{id}/play. However, 'Create or act on items play' is vague and does not clearly state that this starts or triggers playback, nor does it distinguish from the sibling play_by_episode_id tool.

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 alternatives. The instruction to read the matching GET or /schema endpoint is a prerequisite for body discovery, not a usage rule. It does not clarify whether this is for whole items only and that episodes should use create_items_by_id_play_by_episode_id.

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