email-validator
Server Details
Cloudflare Workers MCP server: email-validator
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- lazymac2x/email-validator-api
- GitHub Stars
- 0
- Server Listing
- email-validator-api
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.8/5 across 4 of 4 tools scored. Lowest: 3.2/5.
validate_email includes comprehensive checks (syntax, MX, SPF/DKIM, typo suggestions, risk scoring) that subsume both check_domain and suggest_fix, making the targeted tools redundant for many use cases. validate_batch is clearly separate, but the overlap between the individual validation tools and the single comprehensive validator creates ambiguity.
All tool names follow a consistent verb_noun snake_case pattern (check_domain, suggest_fix, validate_batch, validate_email). The verbs differ appropriately for their actions, though validate_batch and validate_email share the same verb while the others use distinct verbs, which is a minor deviation but still predictable.
With 4 tools, the server is well-scoped for an email validation service. Each tool has a clear purpose (single validation, batch validation, domain reputation, typo suggestions), and the count is neither sparse nor bloated.
The core email validation workflow is well covered: single check, batch processing, domain reputation, and typo correction. A minor gap is the lack of a dedicated syntax-only or MX-only validator, but validate_email already provides comprehensive checks, so most users will not encounter dead ends.
Available Tools
4 toolscheck_domainBInspect
Check domain reputation: MX records, SPF, DKIM, disposable detection, A record existence, and overall reputation score.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Domain to check (e.g. gmail.com) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full transparency burden. It discloses the checks performed but omits any behavioral traits such as whether the operation is read-only, network dependencies, potential delays, permission requirements, or output format details. Only the verb 'check' implicitly suggests non-mutation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that efficiently lists the checks without extraneous words. It earns its length by providing concrete detail about the tool's scope.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple single-parameter tool, the description adequately conveys the tool's purpose and scope. However, with no output schema, it doesn't explain the return format, score ranges, or potential error conditions, leaving some ambiguity for an agent deciding whether this tool meets its needs.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description covers 100% of the single parameter ('Domain to check (e.g. gmail.com)'). The description adds context about what checks the domain undergoes, which slightly enriches the parameter's meaning, but it doesn't provide additional format or validation details. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Check domain reputation') and specifies the exact resources checked (MX, SPF, DKIM, disposable detection, A record existence, reputation score). It distinguishes itself from sibling validate_email by focusing on domain-level checks, though it doesn't explicitly name the sibling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when domain-level reputation verification is needed, listing specific checks. However, it provides no explicit when-to-use vs. alternatives like validate_email or suggest_fix, nor any exclusions or prerequisites. The implied context is clear but not fully developed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
suggest_fixAInspect
Detect common email typos and suggest corrections (e.g. user@gmial.com -> user@gmail.com). Covers Gmail, Yahoo, Hotmail, Outlook, iCloud, Protonmail, and more.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Email address to check for typos |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the tool's role and provides an example of the input/output transformation, but it does not state the exact return format (e.g., a list of suggestions, corrected email only, or behavior when no typo is found). This is a gap for agent invocation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with an illustrative example. Every word adds value, and the structure front-loads the core purpose. No wasted text.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with one parameter and no output schema, so the description should explain return values. It does not explicitly state what the tool returns or behavior for valid emails, leaving some ambiguity. The provider list and example help, but the missing output description prevents a higher score.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema describes the 'email' parameter fully (100% coverage), and the description adds no extra semantic detail beyond the schema. Baseline 3 is appropriate since the schema handles parameter meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Detect') and resource ('common email typos') with a concrete example ('user@gmial.com -> user@gmail.com'). It clearly distinguishes from sibling tools like validate_email or check_domain by focusing on suggestion, not just validation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for email typo correction and lists supported providers, giving clear context. However, it does not explicitly mention when not to use it or name alternative tools, so it falls short of full guideline coverage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_batchAInspect
Batch validate up to 100 email addresses at once. Returns individual results plus summary stats.
| Name | Required | Description | Default |
|---|---|---|---|
| emails | Yes | Array of email addresses (max 100) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the batch behavior, the maximum count, and the high-level return format. However, it does not mention error handling, side effects, or any constraints beyond the count limit, leaving room for more transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two crisp sentences, front-loaded with the action and resource. Every word adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter tool with no output schema or annotations, the description covers the core behavior, constraints, and return summary. It lacks details on error representation or edge cases, but is reasonably complete given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the description adds no new insight beyond what the schema already provides for the 'emails' array. The description reinforces the max 100 but does not explain parameter meaning in more depth.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States the specific verb 'validate' and resource 'email addresses', and adds 'Batch' to distinguish from sibling tools like validate_email. Mentions the limit of 100 and the output of individual results plus summary stats, making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies usage for validating multiple email addresses at once, but does not explicitly compare with sibling tools or state when not to use it. The phrase 'at once' gives some context, but no clear alternative/exclusion guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_emailAInspect
Validate a single email address with comprehensive checks: syntax (RFC 5322), MX records, disposable domain detection, role-based detection, SPF/DKIM, typo suggestions, and risk scoring (0-100).
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Email address to validate |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden and lists a detailed set of checks (syntax, MX, disposable, role-based, SPF/DKIM, typo suggestions, risk score). This is transparent about what the tool does, but it omits details about the return structure, potential errors, and network dependencies.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that front-loads the core action ('Validate a single email address') and efficiently lists all validation aspects without redundancy. Every phrase adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given a simple one-parameter tool with no output schema, the description provides a thorough overview of the validation logic and a risk score range. It could be more complete by stating what the return value looks like (e.g., a result object), but the listed checks and score range give enough context for typical use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already fully describes the only parameter ('email') with a clear definition. The description adds no parameter-specific meaning beyond the validation checks, but since schema coverage is 100%, it does not need to compensate. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool validates a single email address and lists specific checks, distinguishing it from siblings like validate_batch (batch) and check_domain (domain-only). The verb 'validate' plus resource 'email' is specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes clear it is for single email validation with comprehensive checks, implying it should be used when detailed validation is needed rather than simple domain checks or batch processing. However, it does not explicitly name alternative tools or state when not to use it, so it lacks strong exclusion guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityBmaintenanceEmail validation MCP server using MailboxValidator API to determine validity of an email address.3351MIT
- Alicense-qualityAmaintenanceEmail Validator AI - MCP server providing AI-powered tools and automation by MEOK AI Labs6MIT
- Flicense-qualityBmaintenanceAn MCP server that provides email sending, reading, replying, and searching capabilities through a Cloudflare Worker, allowing an AI assistant to manage an independent mailbox.
- Alicense-qualityBmaintenanceDeployable stateless remote MCP server on Cloudflare Workers without auth, with support for registering custom tools and connecting to MCP clients.23MIT
Your Connectors
Sign in to create a connector for this server.