Skip to main content
Glama
WYRE-AI

avanan-legacy-mcp

by WYRE-AI

avanan_get_event

Retrieve complete details of a security event by providing its Avanan event ID, enabling incident investigation and response.

Instructions

Get full details of one security event by its Avanan event ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
eventIdYesAvanan event ID.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.3.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. 'Get' clearly indicates a read-only retrieval operation, and 'full details' communicates the expected scope of the return. However, it does not mention response structure, potential errors, or any permissions needed, which is acceptable but not rich for a simple get-by-ID tool.

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 sentence with no filler. It front-loads the action, resource, and lookup key, and every word contributes to understanding the tool's purpose.

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 low-complexity tool with one required parameter and no output schema, the description is largely sufficient. 'Full details' conveys what the caller should expect as a return. It could be more explicit about where the event ID originates (e.g., from avanan_query_events), but that is reasonably inferable from the sibling tool names.

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 schema already describes eventId as 'Avanan event ID.' The description repeats this concept ('by its Avanan event ID') without adding format, constraints, or source guidance. This matches the baseline of 3 where the schema does the heavy lifting.

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 full details'), a clear resource ('one security event'), and the lookup key ('Avanan event ID'). It clearly distinguishes this from sibling tools like avanan_query_events, which imply searching or listing events rather than retrieving a single event by ID.

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 should be used when you already have a specific Avanan event ID and need full details, but it does not explicitly state when not to use it or point to alternatives such as avanan_query_events for searching. The usage context is inferable but not explicit.

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