Skip to main content
Glama
WYRE-AI

avanan-legacy-mcp

by WYRE-AI

avanan_add_exception

Add an email security exception to whitelist or blacklist senders, domains, subjects, attachments, or links. Specify at least one match field to define the rule.

Instructions

Add a whitelist or blacklist entry. Provide at least one match field (senderEmail, senderDomain, senderName, recipient, subject, attachmentMd5, linkDomains, senderIp).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
commentNoWhy this exception exists.
excTypeYesException list: whitelist or blacklist.
subjectNoEmail subject.
senderIpNoSender IP address.
recipientNoRecipient email address.
senderNameNoSender display name.
linkDomainsNoLink domain(s) in the email body.
senderEmailNoSender email address.
actionNeededNoAction to apply on match (as accepted by the portal).
senderDomainNoSender domain.
attachmentMd5NoAttachment MD5 hash.
quarantineAllNoQuarantine all matches (blacklist).
senderClientIpNoSender client IP address.
matchOnlyFutureNoApply only to future emails.
subjectMatchingNo
ignoringSpfCheckNoIgnore SPF check for this exception.
recipientMatchingNo
linkDomainMatchingNo
senderNameMatchingNo
senderEmailMatchingNo
senderDomainMatchingNo

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 exist, so the description has to carry the behavioral disclosures. It does state the side-effect at a high level and highlights a validation requirement, but it does not mention reversibility, whether it applies unilaterally to future mail, or possible side effects. Valuable but not complete.

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 sentences with no filler; the action is front-loaded and the most important constraint immediately follows. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a 21-parameter mutation with no output schema and no annotations. The description only covers the core action and the minimum-match-field rule. It does not explain how the optional modifiers (actionNeeded, quarantineAll, ignoringSpfCheck, matchOnlyFuture, *_Matching) interact, nor what the tool returns. That leaves a substantial part of the call surface unexplained.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema descriptions cover 71% of parameters, so the baseline is moderate. The description adds a crucial cross-field invariant that the schema does not capture: at least one match field from a specific list is required, which meaningfully guides agent input beyond the schema.

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?

States a specific action and resource: 'Add a whitelist or blacklist entry.' This immediately differentiates it from the get/list/update/delete exception siblings and within exception CRUD. No ambiguity about the core purpose.

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?

Gives a useful invocation context (at least one match field) and the verb 'Add' implies creation rather than update/delete. However, it does not explicitly say when to prefer this tool over update_exception or list_exceptions, so the choice is left inferred.

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