Skip to main content
Glama
CyberKnightLabs

vmware-knight

acknowledge_vcenter_alarm

Mark a triggered vCenter alarm as acknowledged without clearing it. Use this to record that an alarm has been seen while leaving it active until the issue is resolved.

Instructions

[WRITE] Acknowledge a triggered vCenter alarm — marks it as seen WITHOUT clearing it.

This only marks the alarm; it does not clear it. The alarm stays in the active list with acknowledged=true until its condition clears or it is reset. To remove it entirely after fixing the root cause use reset_vcenter_alarm instead. Get exact entity_name and alarm_name from list_vcenter_alarms first; an unknown pair returns a not-found error.

Returns: Dict: entity_name, alarm_name, action ("acknowledged"), acknowledged (true).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
targetNovCenter target name from config.yaml; omit to use the default target.
alarm_nameYesExact alarm definition name, e.g. "Virtual machine CPU usage".
entity_nameYesVM, ESXi host, or cluster the alarm fired on (from list_vcenter_alarms output).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.12.10

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already indicate readOnlyHint=false and destructiveHint=false, and the description adds meaningful state behavior beyond that: alarm remains active, acknowledged=true persists until condition clears, and an unknown pair returns a not-found error. It also explicitly labels the action as [WRITE], reinforcing the mutation without contradicting 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?

Each sentence earns its place: purpose, non-effect, persistence behavior, alternative tool, prerequisite/error, and return format. The [WRITE] marker front-loads the key action, and the structure is scannable without fluff.

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?

For a write tool with no output schema, the description covers the action, the state change, the sibling alternative, the required data source, error behavior, and the return fields. An agent has enough to call it correctly and interpret the result.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents all three parameters. The description adds value by instructing the agent to source entity_name and alarm_name from list_vcenter_alarms output and warning that an unknown pair causes a not-found error, which is practical guidance beyond the schema field descriptions.

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 states a specific verb ('acknowledge') and resource ('vCenter alarm'), and immediately distinguishes the action by saying it marks as seen WITHOUT clearing. It explicitly names reset_vcenter_alarm as the different alternative, so an agent can tell this tool apart from siblings without opening schemas.

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?

Provides explicit when-to-use ('marks it as seen'), when-not-to-use (does not clear it), when to choose the sibling instead (remove entirely after fixing cause, use reset_vcenter_alarm), and a concrete prerequisite (get exact entity_name and alarm_name from list_vcenter_alarms first). Nothing is left to inference.

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