Email Checker MCP Server
For your cold outbound email, this tool will help you validate email addresses.
Features
- Email address validation
- Simple JSON response format
- No API key required
Prerequisites
- Python 3.x
Installation
- 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.
Configure as MCP Server
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:
- MacOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%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:
- Replace
YOUR_USERNAMEwith your actual system username - Make sure the directory path matches your local installation
Usage
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."""
Example Use:
Prompt: Does this email exist?
Parameters:
email: String containing the email address to validate
Example Response:
{
"exist": true
}
API Usage Limits
The service uses 2IP’s Email API which provides:
- No API key required
Error Handling
The service includes error handling for:
- Invalid email format
- API request failures
- Network timeouts
- Rate limiting
Email Checker MCP Server
Project Details
- ravinahp/email-checker-mcp
- Last Updated: 1/8/2025
Recomended MCP Servers
A MCP Server for sending MIDI sequences to any program that supports MIDI input
A Model Context Protocol (MCP) server that provides conversational interface for the exploration and analysis of RDF (Turtle)...
flutter mcp server
Oiii eu sou Chiknet, um velhinho teimoso em aprender conteúdos de programação e tecnologia!!! tenha paciencia preciso sempre...
Fetch data from Hong Kong Observatory with MCP
Web Crawling and RAG Capabilities for AI Agents and AI Coding Assistants
Interact seamlessly with GitLab repositories to manage merge requests and issues. Fetch details, add comments, and streamline your...
Official Firecrawl MCP Server - Adds powerful web scraping to Cursor, Claude and any other LLM clients.





