hosts_bulk_delete
Delete multiple hosts in one operation by supplying a list of host UUIDs.
Instructions
Bulk delete selected hosts
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuids | Yes | Array of host UUIDs |
Delete multiple hosts in one operation by supplying a list of host UUIDs.
Bulk delete selected hosts
| Name | Required | Description | Default |
|---|---|---|---|
| uuids | Yes | Array of host UUIDs |
Changes observed during successful MCP inspections.
v2.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. It conveys that the operation is destructive, but it does not disclose irreversibility, cascade effects, or what happens to associated resources or data beyond the literal 'delete'.
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 a clean five-word phrase with no filler: verb first, then resource, then scope. Every word earns its place.
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 simple one-parameter operation with full schema coverage, the description is minimally adequate. However, with no annotations and no output schema, the destructive side effects and result behavior remain implicit rather than explicitly stated.
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?
Schema description coverage is 100%, with the single parameter documented as 'Array of host UUIDs'. The description itself adds no parameter-level meaning beyond the schema, so baseline 3 applies.
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 ('delete') and resource ('hosts'), and the word 'bulk' clearly distinguishes it from the sibling hosts_delete. An agent can tell what this tool does without opening the schema.
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 explicit 'use when' or 'instead of' guidance. The word 'bulk' implies this tool is for deleting multiple hosts versus hosts_delete, but no conditions, exclusions, or alternatives are named.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.