Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

get_backups_by_id_apply

Read-onlyIdempotent

Apply a saved backup by ID to restore Audiobookshelf data. Provide the backup ID to execute the restoration and recover your server state.

Instructions

Get backups apply.

GET /api/backups/{id}/apply

Args: id: Path parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2/5.0
Behavior2/5

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

Annotations already indicate readOnly, idempotent, and non-destructive behavior. The description adds no behavioral context beyond the HTTP method and path, so it does not meaningfully disclose anything beyond what structured annotations already provide.

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

Conciseness2/5

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

The description is short, but the opening sentence is a redundant restatement of the tool name and the Args section mostly repeats schema information. Brevity here reflects under-specification rather than efficient communication.

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 though the tool has only one parameter and an output schema, the description fails to explain the core operation: what 'apply' does, what the response represents, or how this endpoint differs from related backup endpoints. An agent would struggle to decide when to call 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?

The description only says 'id: Path parameter', which is slightly more than the schema's bare property definition but adds little real meaning. It does not explain what the id identifies, what values are valid, or how it affects the operation.

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 is essentially a tautology of the tool name ('Get backups apply') and provides no explanation of what 'apply' means in this context. The endpoint path is listed, but the actual function and resource semantics remain unclear.

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 on when to use this tool versus the many sibling tools. It does not distinguish itself from get_backups_by_id_download, list_backups, or other backup-related operations.

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