A Model Context Protocol (MCP) server that provides professional email validation and discovery capabilities using EmailVerify.io. This server enables LLMs to verify email deliverability, detect risky addresses, and find professional contact information directly within your AI chat.
- Sub-100ms API Response: Optimized for real-time AI workflows.
- High Accuracy: Advanced SMTP-level verification and domain analysis.
- Enterprise Ready: Detects catch-all, disposable, and fraudulent emails.
- Professional Discovery: Find verified email addresses by name and domain.
- Deterministic Tools: Structured data output for reliable LLM reasoning.
- Node.js: 18.0.0 or newer
- MCP Client: Cursor, Claude Desktop, Claude Code, VS Code, or any other compatible client.
First, install and configure the EmailVerify MCP server using the Master Setup command.
npx @emailverifyio/emailverify-mcp setupThis command will prompt you for your API key, validate it, and automatically offer to configure Claude Code for you. Your key is saved locally in ~/.emailverify-mcp.json.
For most tools, use the following JSON configuration:
{
"mcpServers": {
"emailverify": {
"command": "npx",
"args": [
"-y",
"@emailverifyio/emailverify-mcp"
]
}
}
}Add via the Amp VS Code extension settings screen or by updating your settings.json file:
"amp.mcpServers": {
"emailverify": {
"command": "npx",
"args": ["-y", "@emailverifyio/emailverify-mcp"]
}
}Add via the Antigravity settings or by updating your configuration file:
"mcpServers": {
"emailverify": {
"command": "npx",
"args": ["-y", "@emailverifyio/emailverify-mcp"]
}
}Use the Claude Code CLI to add the server:
claude mcp add emailverify -- npx -y @emailverifyio/emailverify-mcpAdd to your claude_desktop_config.json (Windows: %APPDATA%\Claude\, Mac/Linux: ~/.config/Claude/):
{
"mcpServers": {
"emailverify": {
"command": "npx",
"args": ["-y", "@emailverifyio/emailverify-mcp"]
}
}
}Add the standard config to your cline_mcp_settings.json file:
{
"mcpServers": {
"emailverify": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@emailverifyio/emailverify-mcp"]
}
}
}Use the Codex CLI:
codex mcp add emailverify npx "@emailverifyio/emailverify-mcp"Use the interactively or add to ~/.copilot/mcp-config.json:
{
"mcpServers": {
"emailverify": {
"command": "npx",
"args": ["-y", "@emailverifyio/emailverify-mcp"]
}
}
}Go to Cursor Settings -> MCP -> Add new MCP Server.
- Name:
emailverify - Type:
command - Command:
npx @emailverifyio/emailverify-mcp
Use the Factory CLI:
droid mcp add emailverify "npx -y @emailverifyio/emailverify-mcp"Follow the MCP install guide and use the standard config.
Go to Advanced settings -> Extensions -> Add custom extension.
- Type:
STDIO - Command:
npx - Args:
["-y", "@emailverifyio/emailverify-mcp"]
Add to .junie/mcp/mcp.json:
{
"mcpServers": {
"emailverify": {
"command": "npx",
"args": ["-y", "@emailverifyio/emailverify-mcp"]
}
}
}Add to .kiro/settings/mcp.json:
{
"mcpServers": {
"emailverify": {
"command": "npx",
"args": ["-y", "@emailverifyio/emailverify-mcp"]
}
}
}Go to Program -> Install -> Edit mcp.json and use the standard config.
Add to ~/.config/opencode/opencode.json:
"mcp": {
"emailverify": {
"type": "local",
"command": ["npx", "-y", "@emailverifyio/emailverify-mcp"],
"enabled": true
}
}Open Qodo Gen chat panel -> Connect more tools -> + Add new MCP -> Paste standard config.
Use the VS Code CLI:
code --add-mcp '{"name":"emailverify","command":"npx","args":["-y","@emailverifyio/emailverify-mcp"]}'Go to Settings -> AI -> Manage MCP Servers -> + Add and use the standard config.
Follow Windsurf MCP documentation and use the standard config.
Add this to your settings.json:
{
"node": {
"mcp_servers": {
"emailverify": {
"command": "npx",
"args": ["-y", "@emailverifyio/emailverify-mcp"]
}
}
}
}| Tool | Description | Parameters |
|---|---|---|
validate_email |
Verify a single email address for deliverability and risk. | email (string) |
validate_batch |
Start an asynchronous task to validate up to 250 emails. | emails (array), title (string) |
| Tool | Description | Parameters |
|---|---|---|
find_email |
Discover a professional email using a person's name and domain. | name (string), domain (string) |
get_balance |
Check your remaining credits and account status. | None |
get_bulk_results |
Retrieve results for a previously started bulk validation task. | taskId (string) |
"Find the email for John Doe at stripe.com and tell me if it's safe to send."
"I have a list of emails in this file. Use EmailVerify to check them and highlight which ones are disposable or catch-all."
The server supports the following command-line flags:
| Option | Description | Environment Variable |
|---|---|---|
--api-key |
Your EmailVerify.io API Key | EMAILVERIFY_API_KEY |
--base-url |
API Base URL (Default: https://app.emailverify.io) | EMAILVERIFY_BASE_URL |
Apache-2.0