Skip to main content
Glama
CyberKnightLabs

vmware-knight

cluster_delete

Destructive

Delete an empty vCenter cluster. Preview the blast radius of hosts, VMs, and datastores, then confirm to remove it.

Instructions

[WRITE] Delete an empty cluster (no hosts must remain).

Without confirm=True this only previews: it returns blast_radius (cluster name and id, host/VM/datastore counts and names, blockers) and deletes nothing. Show that to the user and get their explicit decision. Do not set confirm=True on your own because the user asked earlier: they have not seen the preview yet.

Refused: a cluster that still has hosts or VMs (evacuate members with cluster_remove_host first), or one whose members could not be read. Check cluster_info first. Returns a dict (action, blast_radius).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesName of the cluster to delete.
targetNoOptional vCenter target name from config.
confirmNoFalse (default) returns the blast radius and changes nothing. True applies it.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.12.10

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already mark destructiveHint=true, but the description meaningfully extends this by explaining the preview/apply dual mode, the blast_radius return value, and the refusal cases. It also warns against self-confirming without user consent, which is behavioral context far beyond the annotations.

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?

The description is front-loaded with the core purpose, then organizes safety behavior, refusal conditions, and return type in clear sections. Every sentence carries operational meaning; there is no filler or repetition of schema content.

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?

Given the destructive nature, the description fully equips an agent: prerequisites (cluster_info), associated sibling action (cluster_remove_host), preview behavior, return shape, and explicit refusal conditions. No output schema exists, so the stated return dict (action, blast_radius) is essential and present.

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%, so each parameter is already documented. The description reinforces confirm's preview-vs-apply semantics and the returned dict, but it does not substantially add new parameter-level meaning beyond what the schema provides; it instead adds usage and safety context.

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 a precise verb and resource: 'Delete an empty cluster', and immediately scopes it with '(no hosts must remain)'. It differentiates itself from related operations by naming cluster_remove_host as the evacuation step, so an agent can distinguish deletion from member removal.

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

Usage Guidelines5/5

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

The description gives explicit when-to-use guidance: only empty clusters, check cluster_info first, use cluster_remove_host for evacuation, and never set confirm=True before showing the preview to the user. It also states refusal conditions, making the decision boundary clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.