Skip to main content
Glama
WYRE-AI
by WYRE-AI

unifi_get_host

Retrieve detailed information for a specific UniFi host by its ID to inspect device status, attributes, and configuration.

Instructions

Get detailed information about a single host by ID (as returned by unifi_list_hosts).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesHost ID.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only says 'get detailed information,' which conveys read-only intent but does not disclose response shape, error behavior, permissions, or anything beyond the basic operation.

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?

A single, front-loaded sentence with no filler. Every word contributes to identifying the tool's purpose and the required input's source.

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 simple single-parameter read tool, the description is adequate: an agent knows what to call, what argument to pass, and where to obtain that argument. It could mention return details, but the tool's simplicity keeps this from being a major gap.

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?

The schema already documents id as 'Host ID,' and the description adds practical meaning by specifying that the ID is the one returned by unifi_list_hosts. This provenance helps an agent construct the call correctly and is not present in the schema.

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 clear verb-resource pair: get detailed information about a single host. It explicitly distinguishes itself from unifi_list_hosts by scoping to one host by ID, so an agent can tell them apart immediately.

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 implies the correct workflow: call this after unifi_list_hosts and pass the host ID returned there. It does not explicitly state when not to use it or name alternatives, but the intended context is clear.

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