Skip to main content
Glama
matt-coppinger

Horizon MCP Server

get_session

Given a session ID, returns detailed information about that user session, enabling monitoring and troubleshooting of Horizon VDI sessions.

Instructions

Get detailed information about a specific user session.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
session_idYesSession ID — obtain from list_sessions

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure, yet it only states 'Get detailed information.' It does not explicitly confirm a read-only side-effect profile, mention authentication requirements, or describe error behavior on an unknown session ID.

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 a single, front-loaded sentence with no filler. It efficiently communicates the tool's primary action.

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

Completeness3/5

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

For a simple one-parameter getter with an output schema, the purpose is clear and the parameter is well documented. However, the absence of usage guidance and explicit behavioral disclosure leaves the description incomplete for an agent without annotations to rely on.

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?

The schema covers the sole parameter session_id with a description that even points to list_sessions as the source. The tool description itself adds no parameter-level meaning, but given 100% schema coverage, the baseline of 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?

The description uses the specific verb 'Get' and resource 'detailed information about a specific user session,' making the operation clear. The word 'specific' differentiates it from sibling list_sessions, which lists all sessions.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives such as list_sessions or diagnose_session. It does not state that the session ID should be obtained from list_sessions (that hint appears only in the parameter schema) or mention any exclusions.

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