Skip to main content
Glama
piyushladhar

iotamine-mcp

by piyushladhar

delete_vps_backup

Destructive

Permanently delete a VPS backup using its VPS ID and backup ID. Set confirm=true because this action cannot be undone.

Instructions

Permanently delete one backup of this VPS. Irreversible — requires confirm=true.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
vps_idYes
confirmNo
backup_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4/5.0
Behavior4/5

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

Adds behavioral context beyond the destructiveHint=true annotation by disclosing that the delete is permanent/irreversible and guarded by confirm=true. No contradiction with annotations.

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?

One sentence with zero filler. The action and consequence are front-loaded, and the confirm requirement is stated compactly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple delete tool with annotations, the description covers the action, permanence, and confirmation guard. It omits response or error details, but no output schema exists and the operation is straightforward.

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?

With 0% schema description coverage, the description partially compensates by explaining that confirm must be true to execute the deletion. vps_id and backup_id are only implied via 'this VPS' and 'one backup', and their names already carry most of the meaning.

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?

States a specific verb ('Permanently delete') and resource ('one backup of this VPS'), making the action unambiguous. It clearly distinguishes from sibling tools like create_vps_backup, restore_vps_backup, and list_vps_backups.

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 usage context is implied: use this to delete a single backup. It provides one clear condition, 'requires confirm=true', but does not explicitly name alternatives or state when to prefer list_vps_backups or restore_vps_backup.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.