Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

create_me_item_by_id_bookmark

Idempotent

Bookmark a library item by its ID to save a personal reading or listening position for later access.

Instructions

Create or act on item bookmark.

POST /api/me/item/{id}/bookmark

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

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

Annotations already declare non-read-only, idempotent, and non-destructive behavior, so the description only needs to add extra context. It provides the HTTP method and path, and instructs to read the matching GET or /schema endpoint for body fields, which is useful procedural guidance beyond the annotations. However, it does not describe side effects or what 'act' entails, leaving a gap in behavioral disclosure.

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 compact and structured, clearly separating the endpoint, args, and a reference to external schema documentation. Every sentence contributes useful information without fluff. The only redundancy is the vague 'or act' but it does not significantly inflate length.

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 an open-bodied POST with no schema descriptions, the description provides a pointer to external discovery but does not explain the action semantics, id meaning, or how this fits with sibling operations. The presence of an output schema covers return values, but the input side remains underspecified. An agent would likely need additional documentation to correctly invoke this tool.

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?

With schema description coverage at 0%, the description must compensate, but it only labels 'id' as a path parameter and 'body' as a request payload. It does not clarify what the id refers to (item ID is only inferable from the tool name) nor does it explain any body fields, instead deferring to GET/schema endpoints. This is minimal added meaning over the raw schema.

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 states a verb ('Create') and a resource ('item bookmark'), but adds 'or act' without specifying what other actions are possible, making the scope ambiguous. It does not differentiate from sibling tools like patch_me_item_by_id_bookmark or delete_me_item_by_id_bookmark_by_time, relying on the tool name to carry most of the meaning.

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 offers no guidance on when to use this tool versus alternatives. While siblings clearly cover update and delete, there is no mention of them or any conditions that would select this tool over them. The vague 'or act' further muddies the intended usage context.

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