Skip to main content
Glama
WYRE-AI

ESET PROTECT MCP Server

by WYRE-AI

esetprotect_batch_get_users

Fetch multiple ESET PROTECT users by UUID in a single atomic call, returning all requested users or none.

Instructions

Get multiple users by UUID in one call. Atomic: every requested user is returned or none.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
usersUuidsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It goes beyond the obvious 'get' semantics by disclosing atomicity: every requested user is returned or none. It does not cover error details or rate limits, but the key all-or-nothing behavior is explicitly stated.

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?

Two short sentences with no filler. The main operation is front-loaded, and the atomicity clarification earns its place by conveying an important behavioral guarantee.

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 single-parameter batch getter with no output schema, the description covers the essential operational context: what to pass, the batch behavior, and the all-or-nothing contract. A bit more detail on the response shape or differentiating from single get_user would improve completeness, but it is sufficient for correct invocation.

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 only parameter, usersUuids, has no schema-level description, but the prose clarifies that the array contains user UUIDs and that multiple are expected. This adds some meaning beyond the bare type declaration, though it does not mention limits, uniqueness, or invalid-UUID behavior.

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 states a specific action ('Get multiple users'), a clear resource ('users'), and a distinct mode ('by UUID in one call'). This clearly differentiates it from single-user retrieval like esetprotect_get_user and list operations.

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?

It clearly conveys the intended context: use when you need several users by UUID in a single request. However, it does not explicitly name alternatives or state when not to use this tool, so it stops short of full routing guidance.

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