MCP Catalogs
Home

ultimate_mcp_server vs mcp-mail

Side-by-side comparison to help you pick between these two MCP servers.

ultimate_mcp_server
by Dicklesworthstone
mcp-mail
by shuakami
Stars★ 149★ 48
30d uses
Score8542
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
CommunicationProductivityAI / LLM Tools
LanguagePythonTypeScript
Last commit2 mo ago6 mo ago

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

mcp-mail · Summary

MCP-based email management tool enabling AI to handle various email operations including sending, receiving, and organizing emails.

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

mcp-mail · Use cases

  • Automate email responses and follow-ups
  • Search and organize email archives by content or sender
  • Extract and manage contacts from email history

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server

mcp-mail · Install

Installation

Via Smithery

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

Manual Installation

  1. Clone and install:
git clone https://github.com/shuakami/mcp-mail.git
cd mcp-mail
npm install
npm run build
  1. Add to Claude Desktop MCP configuration (~/.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"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.