Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

create_backups

Idempotent

Create a new backup of your Audiobookshelf server data. Send the required body payload to the backups API to preserve your library, settings, and user data.

Instructions

Create or act on api backups.

POST /api/backups

Args: body: Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

Annotations already indicate idempotency, non-read-only, and non-destructive behavior. The description adds little beyond that, only restating that the operation creates or acts on backups and showing the HTTP method. It does not explain side effects, outcomes, or any additional behavioral traits, and 'act on' is too vague to be informative.

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 and well-organized with the endpoint and argument breakout. The only waste is the ambiguous 'or act on' phrase, which could be removed for clarity.

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?

With a single free-form body parameter and an output schema present, the description gives a reasonable discoverability path. Still, it lacks concrete details about what the tool actually does, what success looks like, and how this relates to sibling backup 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?

Schema description coverage is 0%, so the description must compensate. It correctly identifies 'body' as the request payload and directs the agent to consult the matching GET or /schema endpoint for fields, which is useful. However, it does not describe any actual fields or their meaning, leaving significant discovery work to the agent.

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 the resource ('api backups') and a verb ('Create'), but the phrase 'or act on' adds ambiguity and doesn't specify the exact operation. It also does not distinguish this tool from the closely related sibling 'create_backups_upload'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when creating backups and instructs the agent to read the matching GET or /schema endpoint first. However, it provides no explicit guidance on when to prefer this tool over alternatives like create_backups_upload, nor any exclusion criteria.

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