Skip to main content
Glama

get_device_details

Fetch comprehensive details for a UniFi device by MAC address to support network monitoring and control decisions.

Instructions

Get detailed information about a specific device

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
macYesMAC address of the device

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/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 disclosing behavior. 'Get' implies a read operation, but the description does not state whether the operation is read-only, whether special permissions are needed, what happens for invalid MAC addresses, or what kind of 'detailed information' is returned.

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, tightly written sentence with no filler or repetition. Every word contributes to the meaning, making it easy to parse quickly.

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 tool, this is minimally adequate: the agent can identify the action and provide the required MAC address. However, with no output schema and no description of what 'detailed information' includes, the agent lacks context about the expected return value or potential error conditions.

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 the schema already documents the 'mac' parameter. The description adds only the word 'specific', which aligns with the parameter but provides no extra format or behavioral details beyond the schema.

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 clearly states a specific verb ('Get') and resource ('detailed information about a specific device'), which distinguishes it from broader list tools like list_devices. However, it does not explicitly distinguish between a 'device' and a 'client', so it is not fully differentiated from get_client_details.

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 gives no guidance on when to use this tool versus alternatives, and does not mention any exclusions or prerequisites beyond the required MAC address. An agent gets no help deciding between get_device_details, get_client_details, or list_devices.

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