Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

create_tools_item_by_id_encode_m4b

Idempotent

Trigger M4B encoding for a specific Audiobookshelf item by supplying its ID and the required request payload.

Instructions

Create or act on item encode-m4b.

POST /api/tools/item/{id}/encode-m4b

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

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.6/5.0
Behavior2/5

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

Annotations already indicate mutation and idempotency, but the description adds no behavioral detail about whether this starts a job, modifies the item, or returns a task status. 'Create or act on' is too vague to disclose meaningful side effects. The description does not contradict the annotations, but it also does not 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 short, front-loaded with the endpoint, and avoids excessive prose. The awkward 'Create or act on' opener and the mostly redundant Args section keep it from being excellent.

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 niche tool with an opaque name, the description omits the core action semantics and selection context. The output schema and annotations reduce the need for return/safety detail, but an agent still cannot tell what encode-m4b does or when to invoke it beyond the literal route name.

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 description adds that id is a path parameter and body is the request payload, plus a pointer to GET or /schema to discover body fields. This is useful for an open-object body, but the description still provides no concrete field semantics or hints about what the body must contain.

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 names the endpoint and says 'Create or act on item encode-m4b', but it never explains what encode-m4b actually does or what creating/acting on it means. It is distinguishable from sibling tools mainly by the encoded route name, not by a clear verbal statement of the operation's effect.

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?

There is no guidance about when to use this tool instead of related siblings such as create_tools_item_by_id_embed_metadata or delete_tools_item_by_id_encode_m4b. The only advice is to read the matching GET or /schema endpoint first, which concerns request 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