电子邮件检查器 MCP 服务器
对于您的冷出站电子邮件,此工具将帮助您验证电子邮件地址。
特征
电子邮件地址验证
简单的 JSON 响应格式
无需 API 密钥
Related MCP server: MCP-Email-Verify
先决条件
Python 3.x
安装
克隆存储库:
git clone https://github.com/ravinahp/email-checker-mcp.git
cd email-checker-mcp使用 uv 安装依赖项:
uv sync注意:由于该项目使用pyproject.toml进行依赖管理,因此我们使用uv而不是 pip。
配置为 MCP 服务器
要将此工具添加为 MCP 服务器,您需要修改 Claude 桌面配置文件。
配置文件位置取决于您的操作系统:
MacOS:
~/Library/Application\ Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%/Claude/claude_desktop_config.json
将以下配置添加到您的 JSON 文件:
{
"email-checker-mcp": {
"command": "uv",
"args": [
"--directory",
"/Users/YOUR_USERNAME/Code/email-checker-mcp",
"run",
"email-checker-mcp"
]
}
}⚠️重要提示:
将
YOUR_USERNAME替换为您的实际系统用户名确保目录路径与本地安装匹配
用法
该服务提供了一个用于验证电子邮件地址的 FastMCP 工具:
@mcp.tool()
async def validate_email(email: str) -> bool:
"""Validate if an email address exists."""使用示例:
提示:该邮箱存在吗?
参数:
email:包含要验证的电子邮件地址的字符串
响应示例:
{
"exist": true
}API 使用限制
该服务使用 2IP 的电子邮件 API,该 API 提供:
无需 API 密钥
错误处理
该服务包括以下错误处理:
电子邮件格式无效
API 请求失败
网络超时
速率限制
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.