Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

delete_me_item_by_id_bookmark_by_time

DestructiveIdempotent

Delete a bookmark from an audiobook item by specifying its ID and time position. Use this to remove unwanted or outdated listening markers.

Instructions

Delete item bookmark.

DELETE /api/me/item/{id}/bookmark/{time}

Args: id: Path parameter. time: 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
timeYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already cover the destructive and read-only profile, so the description does not need to restate them. It adds a useful discovery instruction to consult the GET or /schema endpoint before sending a body, but does not add further behavioral context like irreversibility or side effects.

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 terse and front-loaded: a one-line summary, the HTTP method/path, and compact arg roles. Every sentence contributes, with no filler or redundant restatement.

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 simple destructive endpoint with annotations and an output schema, the core call is identifiable and the body-discovery pointer helps. It remains incomplete because it lacks parameter semantics, usage guidance, and explicit differentiation from sibling bookmark operations.

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?

With 0% schema description coverage, the description at least labels id and time as path parameters and body as the request payload, which the raw schema does not convey. However, it never explains what id and time semantically represent or what format time should take, leaving much to be inferred from the endpoint name.

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 clearly states the action and resource: 'Delete item bookmark.' with the HTTP DELETE endpoint. It does not, however, explicitly contrast itself with siblings like create_me_item_by_id_bookmark or patch_me_item_by_id_bookmark.

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 provided for when to use this tool versus sibling bookmark tools, nor when deletion is appropriate. The instruction to read the matching GET or /schema endpoint is about payload discovery, not 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