Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

create_items_batch_update

Idempotent

Update multiple library items in one batch request. Send a payload to modify several books or podcasts at once, reducing API calls.

Instructions

Create or act on batch update.

POST /api/items/batch/update

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

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

Annotations already indicate idempotentHint=true, readOnlyHint=false, and destructiveHint=false, but the description adds almost no behavioral context beyond 'read the schema first.' It does not explain what side effects a batch update has, whether it replaces or merges fields, or what authorization may be required. There is no contradiction with annotations, but the description does not meaningfully supplement 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 structurally organized, with the endpoint and args clearly separated. However, the opening sentence 'Create or act on batch update' is vague and mostly redundant with the tool name, so it does not earn its place as the primary purpose statement.

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 batch-update operation with an open request body, the description should at least specify what objects are affected, whether the update is partial or full, and how this differs from sibling batch operations. None of that context is present; the description leaves the agent dependent on external schema discovery and sibling-tool inference.

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 description coverage is 0% and the body parameter is an opaque object with additionalProperties: true. The description labels body as 'Request payload' and points to GET/schema for field discovery, which is somewhat helpful, but it never explains what the payload should represent, such as item IDs or which fields are being updated. This falls short of compensating for the complete lack of schema-level parameter descriptions.

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 essentially restates the tool name: 'Create or act on batch update' adds no concrete detail about what the operation does. The endpoint path hints that it targets items, but the description never says 'update multiple items' or describes the effect. This is closer to a tautology than a clear purpose statement.

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 about when to use this tool over alternatives such as create_items_batch_delete, create_items_batch_get, or create_items_batch_quickmatch. The only instruction, to read the matching GET or /schema endpoint first, is a prerequisite for parameter discovery rather than a usage criterion.

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