delete_backup
Permanently remove a 1Panel backup by ID, clearing outdated or unnecessary backup entries to free storage and maintain a clean backup list.
Instructions
Delete backup
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Permanently remove a 1Panel backup by ID, clearing outdated or unnecessary backup entries to free storage and maintain a clean backup list.
Delete backup
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of disclosing behavior, and it discloses nothing. It does not state that the operation is destructive/irreversible, whether the backup file is permanently removed or moved to the recycle bin, or what permissions are required.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two words with no waste, but this is under-specification rather than conciseness. There is no structure or front-loaded content because there is no content at all.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For an irreversible mutation tool with no annotations, no output schema, and an undocumented required parameter, the description is completely inadequate. Nothing an agent needs to invoke it correctly is present.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single required parameter 'id' has 0% schema description coverage and the description adds no meaning whatsoever about what the id identifies (backup record, account, snapshot). An agent cannot tell from either source what value to supply.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description merely restates the tool name verbatim as 'Delete backup'. It gives no scope, no distinction from siblings such as list_backups, create_backup, restore_backup, or delete_backup_account, and no indication of what a backup record is versus a backup account.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to delete a backup, whether it is reversible, or when to prefer an alternative. The name implies a delete operation on a backup, but nothing in the text tells an agent how to choose this tool over its siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.