Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

create_collections

Idempotent

Create a new audiobook collection by submitting the required payload. Check the schema endpoint first to see which fields the resource expects.

Instructions

Create or act on api collections.

POST /api/collections

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

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

Annotations already cover idempotency, non-read-only, and non-destructive behavior. The description adds little beyond 'Create or act on' and the endpoint, and does not clarify side effects, authentication needs, or what 'act on' entails. It does not contradict the annotations, but it also does not meaningfully enrich them.

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 brief and front-loaded with the resource and endpoint, then provides argument guidance. Every sentence serves a purpose, though the phrasing could be more specific.

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 create operation with a free-form body, the description should specify how to determine the required fields and what actions the endpoint supports. It points to external schema resources but leaves 'matching GET' ambiguous and does not clarify the intended use cases relative to sibling tools.

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?

The schema offers no field descriptions, and the description only says 'body: Request payload' and advises reading the GET or /schema endpoint for expected fields. This pointer is helpful but vague—it does not identify which GET endpoint, list any fields, or explain the body structure beyond what the schema already states.

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 states the verb 'Create' and the resource 'api collections', so the core action is identifiable. However, the vague alternative 'or act on' broadens the meaning without explaining what other actions are possible, and it does not distinguish this tool from sibling create_collections_by_id_batch_add or patch_collections_by_id.

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 the many sibling collection tools. The only instruction is to read the matching GET or /schema endpoint, which concerns body construction rather than tool selection.

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