Skip to main content
Glama
rollecode

Bazarr MCP server

by rollecode

patch_system_backups

Idempotent

Restore a Bazarr system backup by specifying its filename to recover previous settings and data.

Instructions

Restore a backup file.

PATCH /api/system/backups

Args: filename: Backups to restore filename

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
filenameYes

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?

The description adds no behavioral context beyond what the annotations already provide. It does not mention side effects such as overwriting current system state, whether a service restart is needed, or any restrictions. There is no contradiction with the annotations, but there is also no added value.

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 three short sentences and contains no filler. The endpoint and parameter list are useful references. It is slightly under-specified, but as a concise statement it is well-structured and front-loaded.

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 a restore operation, an agent would benefit from knowing that the filename likely corresponds to an existing backup (e.g., from list_system_backups) and that restoring may replace current data. The description provides no such context. Although the tool is simple, the lack of warnings or usage context makes it incomplete.

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?

Schema description coverage is 0%, so the description must clarify the parameter. The line 'filename: Backups to restore filename' essentially restates the parameter name and provides minimal semantic value. It does not explain what format the filename should take or how it relates to existing backup records.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states 'Restore a backup file,' a specific verb and resource that clearly distinguishes this from sibling tools like create_system_backups, delete_system_backups, and list_system_backups. The endpoint and name reinforce exactly what operation is performed.

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 given about when to use this tool versus alternatives, such as create_system_backups or list_system_backups. There are no exclusions, prerequisites, or conditions that would help an agent choose this tool correctly.

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