邮件客户端MCP
概述
Mail Client MCP是一个基于Python的电子邮件客户端,允许用户管理电子邮件配置、发送电子邮件和阅读最新的未读电子邮件。它为Claude Desktop提供MCP
特性
- 列出所有电子邮件配置
- 添加新的电子邮件配置
- 更新现有电子邮件配置
- 删除电子邮件配置
- 使用指定配置发送电子邮件
- 阅读最近5封未读电子邮件
安装
- 克隆存储库:
git clone https://github.com/gamalan/mcp-email-client.git
cd mcp-email-client- 安装uv
Linux/MacOS
curl -LsSf https://astral.sh/uv/install.sh | sh视窗
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"- 安装依赖项:
uv sync配置
使用Claude Desktop的配置示例
{
"mcpServers": {
"mcp_email_client": {
"command": "uv",
"args": [
"run",
"--directory",
"D:\\Project\\RepoPath",
"mcp_email_client"
]
}
}
}或在VsCode中
{
"servers": {
"any-name": {
"type": "stdio",
"command": "/path/to/uv",
"args": [
"run",
"--directory",
"/path/to/repo",
"run_mcp_server.py",
]
}
}
}