Skip to main content
Glama
dalnaspdal

omniventure-agent-tools

by dalnaspdal

verify_email

Validate email deliverability by checking RFC 5322 syntax, live DNS MX records, disposable domains, and corporate reputation scoring.

Instructions

B2B email and deliverability verifier. Validates RFC 5322 syntax, performs live DNS MX record verification, detects disposable/burner domains (Mailinator, TempMail), and scores corporate deliverability reputation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesTarget email address to validate.
check_mxNoWhether to verify live DNS MX records (default: true).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations, the description is the only source of behavioral information. It does disclose that MX checking is 'live' and lists concrete verifications (syntax, disposable domains, reputation), implying network dependency. However, it omits potential side effects such as latency, whether any email is sent, or failure/timeout behavior.

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, information-dense sentence that front-loads the tool's purpose and then lists differentiating capabilities. Every phrase carries weight, with no filler or redundant restatement of the tool name.

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?

The description covers the main verification steps but, since there is no output schema, it does not explain what the tool returns (e.g., a boolean, a score, or a structured report). It also lacks guidance on error handling, timeout behavior, or the impact of the live DNS lookup, leaving meaningful gaps for an agent consuming the result.

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%: both 'email' and 'check_mx' have meaningful descriptions. The tool description reiterates the live MX check but adds no additional parameter-level semantics, such as accepted email formats or how check_mx affects the overall verification flow.

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 opens with 'B2B email and deliverability verifier' and enumerates specific functions: RFC 5322 syntax validation, live DNS MX verification, disposable domain detection, and reputation scoring. This clearly differentiates verify_email from its siblings (e.g., lookup_ip, repair_json), which address unrelated concerns.

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 gives a clear context for when to invoke the tool: verifying B2B email addresses and assessing deliverability. However, it does not explicitly state when not to use it or mention alternative tools, though the sibling list contains no competing email tools.

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