Skip to main content
Glama
vmware-skills

vmware-vdi

session_stats

Read-onlyIdempotent

Retrieves aggregate VDI session statistics: concurrency by state/protocol, current concurrent sessions, and busiest pools. Use it to monitor capacity and identify bottlenecks.

Instructions

[READ] Session statistics: concurrency by state / protocol, current concurrent, busiest pools.

The reporting counterpart to session_list — aggregate numbers, not per-session rows.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
targetNoHorizon target from config.yaml; omit to use the default.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv1.1.1
    • addedInput schema / additionalProperties
      Added value: +false
    • addedInput schema / properties / target / description
      Added value: +"Horizon target from config.yaml; omit to use the default."
  2. First observedv1.0.1

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is well covered by structured data. The description adds the output nature (aggregate statistics) but does not disclose additional behavioral details such as data freshness, scoping semantics, or failure conditions, which is acceptable given the annotation coverage.

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 two compact sentences with no filler. The [READ] marker and primary summary are front-loaded, and the sibling contrast is placed in the second sentence, making the essential information immediately visible.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only tool with one optional parameter and no output schema, the description adequately lists the return categories (concurrency by state/protocol, current concurrent, busiest pools). It does not specify the exact output structure, but the listed categories give an agent sufficient expectations for a straightforward stats call.

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%, and the single optional target parameter is fully described with a default and usage guidance. The tool description adds no parameter-level detail, but the schema already carries that burden, so the baseline score of 3 applies.

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 states exactly what the tool provides: session statistics covering concurrency by state/protocol, current concurrent count, and busiest pools. It further distinguishes itself from session_list by clarifying it returns aggregate numbers, not per-session rows, making its purpose unmistakable.

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?

The description explicitly names session_list as the reporting counterpart and contrasts aggregate numbers with per-session rows, giving an agent a clear decision point. It does not cover when to use other reporting siblings like pool_utilization or health_summary, so it is clear but not exhaustive.

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