email checker mcp
Enables users to validate the existence of email addresses through a simple FastMCP tool, offering JSON responses without requiring an API key.
Enables users to validate the existence of email addresses through a simple FastMCP tool, offering JSON responses without requiring an API key.
For your cold outbound email, this tool will help you validate email addresses.
Clone the repository:
git clone https://github.com/ravinahp/email-checker-mcp.git
cd email-checker-mcp
Install dependencies using uv:
uv sync
Note: We use uv
instead of pip since the project uses pyproject.toml
for dependency management.
To add this tool as an MCP server, you'll need to modify your Claude desktop configuration file.
The configuration file location depends on your operating system:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%/Claude/claude_desktop_config.json
Add the following configuration to your JSON file:
{
"email-checker-mcp": {
"command": "uv",
"args": [
"--directory",
"/Users/YOUR_USERNAME/Code/email-checker-mcp",
"run",
"email-checker-mcp"
]
}
}
⚠️ IMPORTANT:
1. Replace YOUR_USERNAME
with your actual system username
2. Make sure the directory path matches your local installation
The service provides a FastMCP tool for validating email addresses:
@mcp.tool()
async def validate_email(email: str) -> bool:
"""Validate if an email address exists."""
Prompt: Does this email exist?
email
: String containing the email address to validate{
"exist": true
}
The service uses 2IP's Email API which provides: - No API key required
The service includes error handling for: - Invalid email format - API request failures - Network timeouts - Rate limiting