Skip to main content
Glama
LeadMagic

LeadMagic MCP Server

by LeadMagic

Email Validation

validate_email

Check an email address for deliverability and validity. Analyzes MX records, detects catch-all addresses, and returns associated company information to verify contact quality.

Instructions

Validate an email address for deliverability and retrieve associated company information. Provides detailed analysis of email validity, MX records, and catch-all detection.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYes
last_nameNo
first_nameNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.0

TDQS

B3/5.0
Behavior3/5

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

No annotations exist, so the description carries the full burden, and it does disclose meaningful behavioral detail about the analysis returned (MX records, catch-all detection). However it says nothing about cost/credit consumption (notable given the sibling get_credits), rate limits, or whether validation is a read-only operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tight sentences with the primary action front-loaded and the analytical outputs listed second. No filler, though the second sentence is somewhat of a feature list.

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?

With no output schema and no annotations, the description does a reasonable job conveying what the tool returns, but it leaves the two optional name parameters undocumented, provides no usage context relative to siblings, and omits any credit/auth notes for a tool that presumably consumes credits.

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

Parameters2/5

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

Schema description coverage is 0% and the description only addresses the email input implicitly. The first_name and last_name parameters are completely unexplained in both the schema and the description, leaving an agent guessing why they would be supplied to a validation call.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb+resource ("Validate an email address") plus a secondary capability (retrieving company info) and names the concrete analyses performed (validity, MX records, catch-all detection). It does not explicitly differentiate itself from close siblings like find_email or find_company, so it falls short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no when-to-use, when-not-to-use, or alternative-tool guidance. An agent must infer that this is the post-lookup verification step rather than the lookup itself; nothing in the text routes it away from find_email.

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