
Email Checker MCP Server
Enables users to validate the existence of email addresses through a simple FastMCP tool, offering JSON responses without requiring an API key.
Tools
verify_email
Verify an email address using the 2ip.me API. Args: email (str): The email address to verify Returns: str: "true" or "false" indicating if the email is valid
README
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_USERNAME
with 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? <img width="769" alt="Screenshot 2025-01-08 at 10 14 43 AM" src="https://github.com/user-attachments/assets/1bee703b-3a8a-4ed0-ab0d-27b0dfdd06de" />
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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.