Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

create_playlists

Idempotent

Create or manage Audiobookshelf playlists by sending the required request payload to the playlists API.

Instructions

Create or act on api playlists.

POST /api/playlists

Args: 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

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior3/5

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

The annotations already declare readOnlyHint=false, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds the HTTP endpoint context (POST create), which is consistent with those annotations, but discloses nothing further such as auth needs, side effects, or error behavior. With annotations present the bar is lower, so a 3 is appropriate.

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?

Three short, front-loaded lines: purpose, endpoint, and the arrow note about the body. Each sentence earns its place and there is no filler; the ambiguous 'or act on' phrase is the only mild waste.

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 create tool with a fully open body, pointing to the GET/schema endpoint is the right compensation, and the presence of an output schema means return values need not be documented. However, the description never clarifies what 'act on' means, how this differs from the playlist sibling tools, or what a successful create returns — adequate but thin for such an open-ended tool.

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 coverage is 0% and the sole 'body' parameter is an open object (additionalProperties: true), so the description must compensate. It labels body as 'Request payload' and directs the agent to the GET or /schema endpoint for the expected fields — a genuinely useful pointer — but it does not describe any actual fields or shape, leaving the body semantics to be discovered elsewhere.

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 anchors on a specific resource and HTTP verb ('POST /api/playlists'), so it is not a tautology. However, 'Create or act on api playlists' is vague about what 'act on' covers, and with siblings like create_playlists_by_id_item, create_playlists_by_id_batch_add, and create_playlists_collection_by_collection_id, an agent cannot tell from the description that this is the base playlist-creation operation.

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 only guidance is a prerequisite — 'Read the matching GET or the /schema endpoint first' — which helps prepare the request payload but says nothing about when to choose this tool over closely related siblings (create_playlists_by_id_item, patch_playlists_by_id, create_playlists_collection_by_collection_id). No when/when-not/alternatives are given.

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