Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

create_feeds_series_by_series_id_open

Idempotent

Open a series feed to access or stream its audiobooks. Provide the series ID and request payload to start playback or enable feed access for your library.

Instructions

Create or act on series open.

POST /api/feeds/series/{seriesId}/open

Args: series_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
bodyYes
series_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.3/5.0
Behavior2/5

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

Annotations already communicate idempotency and non-destructiveness, but the description adds little behavioral context. It does not explain what state changes 'open' causes, whether it affects feed subscriptions, what options exist in the body, or what the response indicates.

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 description is appropriately short and includes the endpoint and an Args list, so it is not bloated. However, the first sentence is vague and the organization is minimal; the space could have been better used to describe the operation's meaning.

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 an action-oriented endpoint with an opaque body object and no field documentation, the description is incomplete. It lacks the core semantics of the operation, any selection criteria relative to sibling tools, and any behavioral side effects. The output schema existing reduces return-value burden, but the description still does not equip an agent to call this tool confidently.

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 input schema has 0% description coverage, so the description must compensate. It does add minimal useful semantics by identifying series_id as a path parameter and body as the request payload, plus it points the agent to the GET or /schema endpoint to learn expected fields. This is helpful but still leaves the actual body structure undisclosed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description says only 'Create or act on series open', which essentially restates the tool name without defining what 'open' means as an operation. The HTTP path adds endpoint specificity, but the semantic purpose remains vague and does not distinguish this from the many sibling open/close feed 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?

No guidance is given for when to use this tool versus siblings like create_feeds_collection_by_collection_id_open or create_feeds_by_id_close. The only usage hint is to read the matching GET or /schema endpoint first, which is generic rather than a clear when-to-use rule.

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