Skip to main content
Glama
WYRE-AI

ESET PROTECT MCP Server

by WYRE-AI

esetprotect_get_edr_rule_exclusion

Fetch a single EDR exclusion's details using its UUID to verify or audit exclusion settings.

Instructions

Get a single EDR rule exclusion by UUID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
exclusionUuidYes

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, the description carries the full behavioral burden, and 'Get' only conveys read-only intent. It does not disclose behavior such as whether a missing UUID yields 404 vs null, response shape, or any error conditions. Minimal but not misleading.

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?

One sentence with no filler; the verb, resource, and lookup mechanism are all front-loaded. Every word earns its place.

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 one-parameter, no-output-schema read operation, the description gives the essential calling context. However, with no annotations and no output schema, it leaves return format and failure behavior unspecified, so an agent must assume the typical 'get by UUID' contract.

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 coverage is 0%, but the single parameter is self-describing, and the description reinforces that exclusionUuid is the lookup key. It adds only slight meaning beyond the schema's type-only definition and provides no format or value guidance.

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?

Description uses a specific verb ('Get'), a precise resource ('EDR rule exclusion'), and an unambiguous identifier ('by UUID'). It clearly contrasts with sibling list_edr_rule_exclusions and get_edr_rule, so an agent can select it without opening the schema.

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 exclusion by UUID, while list_edr_rule_exclusions is for enumeration, but it never explicitly states when to choose this over a sibling or what distinguishes it from get_edr_rule. Usage context is present by inference only.

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