Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

create_items_batch_quickmatch

Idempotent

Batch quickmatch multiple library items to resolve and update their metadata in a single operation.

Instructions

Create or act on batch quickmatch.

POST /api/items/batch/quickmatch

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

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

Annotations provide idempotentHint=true and destructiveHint=false, but the description adds no behavioral detail about what quickmatch actually does, whether it modifies metadata, launches a background job, or returns match candidates. 'Create or act on' is too vague to disclose real behavior beyond what annotations already state.

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-loads the core intent, endpoint, and argument section without rambling. However, the first sentence is vague and could have been replaced with a more specific explanation of the quickmatch operation.

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?

Even with an output schema present, the description is not complete enough for an agent to call this tool correctly. The core semantics of quickmatch are undefined, the body schema is opaque, and the only guidance is to look elsewhere. An agent still cannot tell what this endpoint expects or what side effects it produces.

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 only parameter, body, is an opaque object with additionalProperties true. The description says body is the 'request payload' and points to the matching GET or /schema endpoint, but it does not describe any expected fields, structure, or examples. This does not compensate for the total lack of schema documentation.

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 batch quickmatch', which essentially restates the tool name and uses the vague 'act on' instead of a specific action. It does not explain what quickmatch does or distinguish it from siblings like create_items_batch_update, create_items_batch_scan, or create_items_by_id_match.

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 usage guidance is 'Read the matching GET or the /schema endpoint first', which is a prerequisite hint, not guidance about when to choose this tool over alternatives. It never states the conditions for using this tool versus create_items_batch_update or create_items_batch_scan.

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