- Home
- MCP servers
- Email Checker
Email Checker
- powershell
1
GitHub Stars
powershell
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"ravinahp-email-checker-mcp": {
"command": "uv",
"args": [
"--directory",
"/Users/YOUR_USERNAME/Code/email-checker-mcp",
"run",
"email-checker-mcp"
]
}
}
}You can validate email addresses for outbound campaigns in a lightweight MCP server. It exposes a simple tool that checks an email and returns a straightforward JSON response indicating whether the address exists, making it easy to filter invalid leads before you send messages.
How to use
Use an MCP client to connect to the Email Checker MCP Server and invoke the validate_email tool. Pass the email address you want to validate as a string. The tool returns a small JSON payload that tells you whether the email exists.
How to install
# Prerequisites
- Python 3.x
# Step 1: Clone the project
git clone https://github.com/ravinahp/email-checker-mcp.git
cd email-checker-mcp
# Step 2: Install dependencies using uvx (uv is used for dependency management in this project)
uv sync
Additional sections
Configuration for running as an MCP server is provided as a stdio-based entry. This uses the uv tool to run the local MCP server binary inside your installation directory. Use this exact configuration in your MCP client setup.
{
"email-checker-mcp": {
"command": "uv",
"args": [
"--directory",
"/Users/YOUR_USERNAME/Code/email-checker-mcp",
"run",
"email-checker-mcp"
]
}
}
Usage example
Example usage from an MCP client: you pass the email to validate and receive a response that indicates existence.
{
"exist": true
}
Available tools
validate_email
FastMCP tool that validates whether a given email address exists. It accepts a string email and returns a boolean result represented by a simple JSON payload.