Skip to main content
Glama
CyberKnightLabs

vmware-knight

cluster_health_summary

Read-onlyIdempotent

Get a one-glance health rollup across clusters: see host, VM, CPU/memory, alarm, and datastore issues ranked by severity. Quickly triage what's wrong now.

Instructions

[READ] One-glance health rollup for every cluster — "is anything on fire?".

Aggregates hosts, VM power state, live CPU/memory pressure, triggered alarms and datastores thin-provisioned past 100% of capacity per cluster, assigns each a status ("ok"/"warn"/"critical"), and flattens the anomalies into a ranked top_issues focus list — the fast triage view for "what's wrong right now?". Read-only (delegates to the vmware-monitor library). Use it FIRST for a cross-cluster glance, then drill in with vm_investigation_bundle or host_investigation_bundle.

Returns {totals, top_issues, issues_total, clusters, snapshot, customization_hint}. Lead with top_issues (worst first, each with a drill-down hint), clusters as context, customization_hint last. Point-in-time — no trending.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
top_nNoCap the top_issues focus list (default 10; 0 hides it).
targetNoOptional vCenter/ESXi target name from config. Uses default if omitted.
include_vmsNoRoll up VM power counts (default True). False skips the VM pass on very large fleets.
cluster_filterNoCase-insensitive substring to show only matching clusters.

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 cover read-only and idempotent behavior, and the description adds value beyond them: it delegates to vmware-monitor, returns a snapshot without trending, ranks top_issues worst-first, and reveals the response shape. No contradiction with 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 question ('is anything on fire?'), then organizes behavior, usage, and return format in tight paragraphs. Every sentence adds information, and the return-field ordering guidance earns its place.

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?

With no output schema present, the description compensates by documenting the return object and which fields to lead with. It also names sibling drill-down tools, explains status semantics, and clarifies the point-in-time nature — leaving no critical gap for an agent to call it correctly.

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 the input schema already documents all four parameters well. The description adds useful context about top_issues and return ordering but doesn't materially enrich parameter meaning beyond the schema.

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?

Description names a specific verb and resource ('health rollup for every cluster') and defines the artifact precisely: statuses per cluster plus a ranked top_issues list. It also distinguishes itself from deeper investigation tools by explicitly positioning this as the fast cross-cluster triage view.

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?

Explicitly instructs the agent to 'Use it FIRST for a cross-cluster glance, then drill in with vm_investigation_bundle or host_investigation_bundle.' It also sets expectations with 'Point-in-time — no trending,' so the agent knows not to use it for temporal analysis.

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