Skip to main content
Glama
rsp2k
by rsp2k

block_storage_delete

Delete a block storage volume using its label or ID. Provide the volume identifier to remove it and receive confirmation.

Instructions

Delete a block storage volume.

Smart identifier resolution: Use volume label or ID.

Args: volume_identifier: Volume label or ID to delete ctx: FastMCP context for resource change notifications

Returns: Success confirmation

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
volume_identifierYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

B3.4/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It discloses deletion and return values, but does not state that deletion is permanent, what happens if the volume is attached to an instance, or whether confirmation is required. This is a significant gap for a destructive operation.

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 short and front-loaded, with a clear first sentence followed by args and returns. The only structural flaw is listing ctx as an argument even though the schema does not include it.

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

Completeness3/5

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

For a single-parameter tool with an output schema, the basics are covered: what it deletes, how to identify the volume, and that it returns confirmation. But the absence of behavioral warnings and any route to alternative tools leaves it merely adequate rather than fully complete.

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?

With 0% schema coverage, the description compensates by explaining that volume_identifier accepts 'Volume label or ID.' This is the key detail an agent needs. However, it also lists a ctx argument that is absent from the input schema, causing slight ambiguity.

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 opens with 'Delete a block storage volume,' naming a specific verb and resource. This clearly separates it from sibling operations like block_storage_attach, block_storage_detach, and block_storage_update.

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?

There is no guidance on when to choose this over alternatives such as block_storage_detach, nor any mention of prerequisites like listing volumes first. The 'smart identifier resolution' note explains how to identify a volume, not when deletion is appropriate.

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