Skip to main content
Glama
matt-coppinger

Horizon MCP Server

get_desktop_pool

Get detailed configuration and status for a specific desktop pool using its pool ID. Retrieve key information for monitoring and troubleshooting.

Instructions

Get detailed configuration and status of a specific desktop pool.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pool_idYesDesktop pool ID — obtain from list_desktop_pools

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
Behavior3/5

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

With no annotations provided, the description carries the behavioral burden. 'Get' communicates a read operation and 'configuration and status' indicates what is returned, which is adequate for a simple lookup. It does not mention error behavior, permissions, or side effects, but no mutating behavior is suggested.

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?

One short, front-loaded sentence with no filler or redundant detail. Every word contributes to identifying the operation, resource, and output scope, making it appropriately concise for a single-parameter read tool.

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 one-parameter get operation with an output schema, the core calling information is present: the resource, the high-level return content, and the strongly documented pool_id parameter. The main gaps are the lack of explicit sibling differentiation and the absence of read-only confirmation, which keeps it adequate but not comprehensive.

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 pool_id parameter description already tells the agent to obtain the ID from list_desktop_pools. The prose description does not add parameter-level meaning beyond the schema, so the high-coverage baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a clear verb-resource pairing: 'Get' + 'desktop pool', and specifies the scope as 'detailed configuration and status.' It does not explicitly differentiate from list_desktop_pools or other get_* siblings, though 'specific desktop pool' implies a singular lookup.

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?

No when-to-use or when-not-to-use guidance is given. The description does not name an alternative tool or provide context for choosing this over list_desktop_pools; the agent must infer usage from the tool name and the pool_id parameter description in the schema.

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