MCP Catalogs
首页

time vs mcp-mail

并排对比,帮你在这两个 MCP server 之间做选择。

time
by modelcontextprotocol
mcp-mail
by shuakami
Stars★ 85,748★ 48
30天用量
综合分7742
官方
分类
效率工具开发者工具沟通协作
沟通协作效率工具AI / LLM 工具
实现语言TypeScriptTypeScript
最近提交本月6 个月前

time · 概述

功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。

mcp-mail · 概述

基于 MCP 的智能邮件管理工具,可让 AI 处理邮件的发送、接收和组织等操作。

time · 使用场景

  • 协助安排跨时区的国际会议
  • 为基于位置的查询提供实时时间信息
  • 为旅行计划和行程安排提供时间转换

mcp-mail · 使用场景

  • 自动化邮件回复和后续跟进
  • 按内容或发件人搜索和组织邮件档案
  • 从邮件历史中提取和管理联系人

time · 安装

安装选项

**使用 uv(推荐):**

uvx mcp-server-time

**使用 PIP:**

pip install mcp-server-time
python -m mcp_server_time

**为 Claude Desktop 配置:**

{
  "mcpServers": {
    "time": {
      "command": "uvx",
      "args": ["mcp-server-time"]
    }
  }
}

mcp-mail · 安装

安装

通过 Smithery 安装

npx -y @smithery/cli install @shuakami/mcp-mail --client claude

手动安装

  1. 克隆并安装:
git clone https://github.com/shuakami/mcp-mail.git
cd mcp-mail
npm install
npm run build
  1. 添加到 Claude MCP 配置文件 (~/.cursor/mcp.json):
{
  "mcpServers": {
    "mail-mcp": {
      "command": "pythonw",
      "args": [
        "/Users/你的用户名/mcp-mail/bridging_mail_mcp.py"
      ],
      "env": {
        "SMTP_HOST": "smtp.qq.com",
        "SMTP_PORT": "465",
        "SMTP_SECURE": "true",
        "SMTP_USER": "your.email@qq.com",
        "SMTP_PASS": "your-app-specific-password",
        "IMAP_HOST": "imap.qq.com",
        "IMAP_PORT": "993",
        "IMAP_SECURE": "true",
        "IMAP_USER": "your.email@qq.com",
        "IMAP_PASS": "your-app-specific-password",
        "DEFAULT_FROM_NAME": "Your Name",
        "DEFAULT_FROM_EMAIL": "your.email@qq.com"
      }
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。