email-mcp vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
email-mcp by codefuturist | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 45 | ★ 149 |
| 30d uses | — | — |
| Score | 47 | 85 |
| Official | — | — |
| Categories | CommunicationProductivityAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
email-mcp · Summary
Full-featured MCP email server with IMAP/SMTP support, OAuth2, and AI-powered triage across multiple accounts.
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.
email-mcp · Use cases
- AI assistants reading and responding to emails on behalf of users
- Automated email management and triage based on custom rules
- Cross-account email management from a single interface
- Scheduling future emails and calendar event extraction
- Email analytics and organization at scale
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
email-mcp · Install
Installation
Quick Setup
# Run directly
npx @codefuturist/email-mcp setup
# Or install globally
npm install -g @codefuturist/email-mcpDocker
docker pull ghcr.io/codefuturist/email-mcp:latestClaude Desktop Configuration
{
"mcpServers": {
"email": {
"command": "npx",
"args": ["-y", "@codefuturist/email-mcp", "stdio"]
}
}
}Environment Variables (Single Account)
{
"mcpServers": {
"email": {
"command": "npx",
"args": ["-y", "@codefuturist/email-mcp", "stdio"],
"env": {
"MCP_EMAIL_ADDRESS": "you@gmail.com",
"MCP_EMAIL_PASSWORD": "your-app-password",
"MCP_EMAIL_IMAP_HOST": "imap.gmail.com",
"MCP_EMAIL_SMTP_HOST": "smtp.gmail.com"
}
}
}
}ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server