Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

delete_tools_item_by_id_encode_m4b

DestructiveIdempotent

Remove an existing encode-m4b item from Audiobookshelf using its unique ID, clearing the specific encoded version or task associated with that identifier to free resources and maintain library accuracy.

Instructions

Delete item encode-m4b.

DELETE /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
bodyNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior3/5

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

Annotations already convey the key safety profile: destructiveHint=true, idempotentHint=true, and readOnlyHint=false. The description adds the useful instruction to read the matching GET or /schema endpoint for the expected body fields, but it does not describe consequences beyond 'delete' and does not contradict the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very concise and well-structured: operation first, then endpoint, then argument definitions. Each line earns its place, including the pointer to the GET/schema endpoint. There is no filler or repetition beyond the endpoint itself.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a destructive operation with one required id and an optional body, the description identifies the path parameter and instructs reading the matching GET/schema endpoint. Annotations cover idempotent/destructive behavior and an output schema exists, so return-value documentation is not needed. However, it omits what 'encode-m4b' refers to and when to use this tool over related siblings, so it is only minimally complete.

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%, so the description must compensate. It only labels id as 'Path parameter' and body as 'Request payload', then tells the agent to read the GET or /schema endpoint. It does not explain what id refers to or what body fields are actually expected, leaving a significant semantic gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Delete item encode-m4b', which names a specific verb and resource, and it includes the full DELETE endpoint. It is not a tautology because it adds the endpoint and argument structure, but it does not clarify what 'encode-m4b' means or differentiate itself explicitly from the many sibling tools.

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 description provides no guidance on when to use this tool versus alternatives such as create_tools_item_by_id_encode_m4b or other delete_* tools. It simply restates the action and endpoint without conditions, prerequisites, or exclusions.

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