delete_vhost
Delete a RabbitMQ virtual host by name to remove unused or obsolete vhosts and keep cluster resources organized.
Instructions
删除虚拟主机
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | 虚拟主机名称 |
Delete a RabbitMQ virtual host by name to remove unused or obsolete vhosts and keep cluster resources organized.
删除虚拟主机
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | 虚拟主机名称 |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It says nothing about irreversibility, whether the vhost must be empty, required permissions, or side effects on queues/exchanges bound to the vhost — critical gaps 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
It is a single front-loaded phrase with zero waste, but it is under-specified rather than genuinely concise — brevity comes at the cost of all operational context.
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 destructive tool with no annotations and no output schema, the description is far too thin: it omits reversibility, preconditions (e.g., empty vhost), and impact on dependent resources. An agent has almost nothing to reason about before invoking it.
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?
There is a single parameter with 100% schema description coverage, so the schema already documents the required 'name' field. The description adds no additional meaning (e.g., name format or constraints), which matches the baseline 3 for full-coverage schemas.
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?
States a specific verb+resource (删除虚拟主机 = delete virtual host), which lets an agent distinguish it from the sibling create_vhost and list_vhosts without opening the schema. It is clear but contains no explicit sibling differentiation or scoping detail.
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?
The description gives no when-to-use context, no prerequisites, and names no alternative. An agent must infer everything from the tool name and the surrounding sibling list.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.