Skip to main content
Glama
WYRE-AI

MSP360 MCP Server

by WYRE-AI

msp360_get_computer

Retrieve detailed information about a specific managed computer by providing its unique HID to identify and monitor the device.

Instructions

Get a single managed computer by its HID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hidYesHID of the computer.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It indicates a retrieval operation but does not mention absence behavior, authorization requirements, rate limits, or any other operational traits beyond what 'Get' semantically implies.

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 one short, front-loaded sentence with no filler. Every word earns its place, and the essential detail (HID lookup) is immediately present.

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 single-parameter retrieval tool, the description plus schema provides the minimum viable information to make the call. However, the absence of usage guidance and behavioral context keeps it from being fully complete.

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 description's mention of HID aligns with the schema. The description adds no additional meaning beyond the schema's 'HID of the computer,' so the baseline score 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 a specific verb ('Get') and a clear resource ('a single managed computer') with the lookup key ('by its HID'). This clearly distinguishes it from sibling tools like msp360_list_computers, which would return multiple computers.

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

Usage Guidelines3/5

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

The description implies the tool is for fetching one specific computer when the HID is known, but it does not explicitly state when to prefer this over msp360_list_computers or any other alternative. Usage context is present only by inference.

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