Skip to main content
Glama
rollecode

Prowlarr MCP server

by rollecode

create_system_backup_restore_upload

Idempotent

Upload a backup file to restore Prowlarr system settings, indexers, and history from a prior backup.

Instructions

Create Backup.

POST /api/v1/system/backup/restore/upload

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

C2.3/5.0
Behavior2/5

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

Annotations already cover readOnly/idempotent/destructive hints. The description adds only the HTTP method and path, not the actual upload/restore behavior, expected request body, or side effects on existing data. There is no contradiction with the annotations, but the added behavioral transparency is minimal.

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 'Create Backup' is redundant with the tool name and the endpoint line carries almost all the information. This is under-specification rather than effective conciseness.

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 upload/restore operation, the description fails to explain the key behavior: that it uploads a backup file and triggers a restore. It also gives no indication of what input the caller must provide beyond the empty schema, nor when to choose this over the restore-by-id sibling.

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 input schema is empty and parameter count is zero, so baseline 4 applies. The description does not add parameter detail, but none exists in the schema. However, the 'upload' endpoint likely implies a file body that is not mentioned, which is more of a completeness gap than a parameter-semantics issue.

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's only prose is 'Create Backup', which is essentially a tautology of the tool name and hides the critical 'restore/upload' semantics. The endpoint line adds specificity, but an agent would still not know this operation uploads a backup file for restoration rather than creating a backup.

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 on when to use this tool versus closely related siblings like create_system_backup_restore_by_id, delete_system_backup_by_id, or list_system_backup. The agent is left to infer selection purely from the endpoint path.

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