remove_volume
Deletes a volume by ID on a 1Panel server, allowing cleanup of unused storage or removal of persistent data tied to containers.
Instructions
Remove volume
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Deletes a volume by ID on a 1Panel server, allowing cleanup of unused storage or removal of persistent data tied to containers.
Remove volume
| 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?
No annotations are provided, so the description carries the full behavioral burden. It does not disclose that this is a destructive removal, whether the volume must be unused, whether the action is reversible, or what authorization is 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?
The description is two words and front-loads the action, but it is severely under-specified for a destructive mutation tool. It is concise because it omits necessary information, not because it is efficiently structured.
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 a one-parameter destructive tool with no annotations and no output schema, the description leaves out everything an agent needs beyond the bare action: parameter meaning, usage context, and behavioral implications. It is not complete enough to support correct invocation.
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 tool has one required parameter ('id') with 0% schema description coverage, and the description provides no meaning for the parameter. An agent cannot tell whether this is a volume name, ID, or what format it expects.
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 states a specific verb and resource ('Remove volume'), so an agent can tell it removes a volume rather than listing or creating one. However, it is essentially a bare restatement of the tool name and adds no scope or distinguishing detail beyond that.
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 use this tool versus alternatives like list_volumes or create_volume, nor any prerequisites, warnings, or exclusions. The description simply names the action.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.