Skip to main content
Glama
rollecode

Bazarr MCP server

by rollecode

create_system_backups

Idempotent

Create a new system backup to safeguard Bazarr configuration and data.

Instructions

Create a new backup.

POST /api/system/backups

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=false, idempotentHint=true, and destructiveHint=false, but the description adds no behavioral context beyond the POST endpoint. It does not explain whether retries are safe, whether the backup operation is asynchronous, what is captured, or if any cleanup is needed. For a mutating operation that creates data, this is a noticeable gap.

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 extremely concise: 'Create a new backup' followed by the endpoint. It is front-loaded, contains no filler, and every part is relevant. The endpoint line is arguably redundant but still adds a concrete API reference.

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 zero parameters and an output schema present, the basic call is well covered. However, the description lacks guidance on when to create a backup, what the idempotency hint means in practice, or any behavioral caveats like duration or storage. It is minimally sufficient but not fully complete for an agent making nuanced decisions.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters and 100% schema description coverage, so the schema already covers everything. The baseline for zero-parameter tools is 4, and there is no missing parameter information for the description to compensate for.

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 verb ('Create') and the resource ('backup'), and this makes it distinguishable from sibling tools like delete_system_backups and list_system_backups. It does not provide any additional scope or detail, but the core purpose is unambiguous. The HTTP endpoint reinforces the operation but adds little descriptive clarity.

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 gives no explicit guidance about when to choose this tool over alternatives such as list_system_backups or patch_system_backups. It does not state prerequisites, side effects to consider, or any contrasting condition. The usage is only implied by the action name and the one-line description.

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