Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

create_playlists_collection_by_collection_id

Idempotent

Creates a playlist collection for a specified collection ID. Provide the collection ID and request body to set up a new playlist collection in Audiobookshelf.

Instructions

Create or act on playlists collection.

POST /api/playlists/collection/{collectionId}

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

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.1/5.0
Behavior2/5

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

Annotations already indicate readOnlyHint=false and idempotentHint=true, so the agent knows it is a write and idempotent. The description adds no behavioral context—no side effects, auth requirements, or what 'act on' means. It does not contradict annotations, but contributes nothing beyond them.

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 short and includes the endpoint and argument list, which is efficient. However, the phrase 'Create or act on' is imprecise, and the structure prioritizes the HTTP method over clarifying the action. It is concise but at the expense of clarity.

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 tool with a generic body parameter and no field documentation, the description is incomplete. It doesn't explain what the collection is, what 'act on' entails, or what the response will be. The pointer to schema/GET is helpful only if the agent can reach those, and it is not sufficient to make the tool usable standalone.

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

Parameters2/5

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

Schema coverage is 0%, so the description must explain parameters, but it only labels collection_id as 'Path parameter' and body as 'Request payload' without explaining semantics. The directive to read GET/schema is a workaround, not meaningful parameter description. Body is a generic object with no documented fields, leaving the agent uncertain about what to send.

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 'Create or act on playlists collection,' which is vague. It provides an endpoint but does not specify what action is performed (create collection? add to collection? etc.). It is not a tautology but lacks a specific verb and resource scope, and does not differentiate from sibling tools like create_playlists or create_playlists_by_id_batch_add.

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 use this tool versus alternatives. The only hint is to read the matching GET or schema endpoint for field info, which is about payload structure, not selection. No exclusions or context for choosing this tool are provided.

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