Skip to main content
Glama
vmware-skills

vmware-vdi

event_list

Read-onlyIdempotent

Retrieve Horizon audit events newest first, filter by severity to identify recent problems. Each entry includes time, severity, user, machine, and message.

Instructions

[READ] List Horizon audit events (newest first), optionally filtered by severity. Paginated.

Each item: time, severity, type, module, user, machine, message. Use for "what went wrong recently".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoPage size (default 50).
offsetNoPage offset.
targetNoHorizon target from config.yaml; omit to use the default.
severityNoFilter by severity (e.g. ERROR, WARNING, AUDIT_FAIL).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed5 schema fields changedv1.1.1
    • addedInput schema / additionalProperties
      Added value: +false
    • addedInput schema / properties / limit / description
      Added value: +"Page size (default 50)."
    • addedInput schema / properties / offset / description
      Added value: +"Page offset."
    • addedInput schema / properties / severity / description
      Added value: +"Filter by severity (e.g. ERROR, WARNING, AUDIT_FAIL)."
    • addedInput schema / properties / target / description
      Added value: +"Horizon target from config.yaml; omit to use the default."
  2. First observedv1.0.1

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so safety is covered. The description adds behavioral context: 'newest first', 'paginated', and the fields each item contains (time, severity, type, module, user, machine, message). This goes beyond annotations without contradicting them.

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?

Two compact sentences. The purpose and scope are front-loaded, and the item-field list is a useful detail packed efficiently. No filler or repetition; every sentence adds value.

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 read-only, paginated list tool with fully documented parameters and no output schema, the description covers everything an agent needs: what it returns (item fields), ordering, filtering, and a use case. It is complete for correct invocation.

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 all four parameters (limit, offset, target, severity) are already documented with types and defaults. The description only adds the notion of optional severity filtering, which is also in the schema. It provides no extra semantics beyond what the schema conveys, so baseline 3 is appropriate.

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?

States a specific verb and resource ('List Horizon audit events') with clear scope (newest first, optional severity filter). The READ prefix reinforces read-only intent, and the use case ('what went wrong recently') makes it distinguishable from sibling tools like session_list or health_summary.

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

Usage Guidelines4/5

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

Provides a clear use case: 'Use for "what went wrong recently"'. It does not explicitly name alternatives or exclusions, but the audit-event focus implicitly separates it from other list tools. The guidance is adequate for an agent to know when to invoke it.

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