Skip to main content
Glama

tenki_delete_volume

Destructive

Permanently delete a volume and destroy its data. Detach the volume from any session first to avoid VolumeInUse errors.

Instructions

Permanently delete a volume and destroy its data. Fails with VolumeInUse if the volume is still attached to a session — detach it first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
volume_idYesThe volume id to delete.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4.5/5.0
Behavior5/5

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

The annotations already mark this as destructive and non-idempotent, and the description adds meaningful context by stating that data is destroyed and that the operation fails with VolumeInUse if attached. It also gives a remedy ('detach it first'), which goes beyond the structured hints.

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 front-loaded sentence conveys the core action and irreversibility, followed by the key failure condition and remedy. Every clause earns its place and no redundant information is present.

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

Completeness5/5

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

For a one-parameter deletion tool, the description fully covers the action, the destructive consequence, the failure mode, and the required prerequisite. No output schema is needed to convey return value, and the annotations cover the safety profile.

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?

Schema description coverage is 100%, and the single parameter volume_id is already fully documented in the schema. The tool description adds no additional parameter-level meaning, so it meets the baseline but does not exceed it.

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 a specific verb and resource: 'Permanently delete a volume and destroy its data.' It clearly distinguishes this from volume-related siblings like update, attach, detach, and resize by emphasizing permanent deletion and data destruction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives a clear usage condition: it will fail if the volume is attached, and the agent should detach it first. It does not explicitly name the detach alternative or provide explicit when-not-to-use guidance, but the prerequisite is clear and actionable.

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