Skip to main content
Glama
WYRE-AI

ESET PROTECT MCP Server

by WYRE-AI

esetprotect_get_device

Retrieve a single managed device by UUID to inspect its details and security status within your ESET PROTECT fleet.

Instructions

Get a single managed device by UUID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deviceUuidYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/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. 'Get' implies a read operation, but the description doesn't mention error handling (e.g., 404 if not found), authentication requirements, or what the response contains. Given no output schema, this is a significant gap for an agent to know what to expect.

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, efficient sentence that is front-loaded with the core action and resource. No wasted words, and the key identifier ('by UUID') is included.

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?

Given the simplicity of the tool (one parameter, no nested objects), the description is adequate for basic invocation. However, the lack of any behavioral details (errors, response shape) and no output schema means an agent has limited context. It is a minimal but functional definition for a get-by-ID operation.

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 input schema provides only 'deviceUuid' as a required string with no description (0% coverage). The description compensates by stating the device is fetched 'by UUID', which clarifies that the parameter is the device's UUID. However, it doesn't specify format or examples, and with zero schema coverage the description could have added more detail, but the minimal clarification earns a baseline score.

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 clearly states the verb 'Get', the resource 'single managed device', and the selection criterion 'by UUID'. This distinguishes it from sibling tools like esetprotect_list_devices (plural) and esetprotect_batch_get_devices (batch), so an agent can immediately tell its purpose.

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 usage: use this when you have a specific device UUID to fetch a single device, as opposed to listing all devices or batch operations. It doesn't explicitly state exclusions or alternatives, but the 'single by UUID' phrasing makes the intended scenario clear.

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