MCP Catalogs
Home

evernote-mcp-server vs ultimate_mcp_server

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

evernote-mcp-server
by brentmid
ultimate_mcp_server
by Dicklesworthstone
Stars★ 51★ 149
30d uses
Score4785
Official
Categories
ProductivityKnowledge GraphAI / LLM Tools
AI / LLM ToolsBrowser AutomationFile System
LanguageThriftPython
Last commit2 mo ago2 mo ago

evernote-mcp-server · Summary

Evernote MCP server for accessing notes via OAuth, with Docker support and recent updates.

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.

evernote-mcp-server · Use cases

  • Querying personal knowledge base using natural language prompts
  • Searching for specific information across all Evernotes
  • Summarizing notes related to specific topics or projects

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

evernote-mcp-server · Install

Installation

Docker Deployment (Recommended)

git clone https://github.com/brentmid/evernote-mcp-server.git
cd evernote-mcp-server
cp .env.example .env
# Edit .env with your Evernote API credentials
docker-compose up --build

Local Development

git clone https://github.com/brentmid/evernote-mcp-server.git
cd evernote-mcp-server
npm install
# Set environment variables
export EVERNOTE_CONSUMER_KEY="your-consumer-key"
export EVERNOTE_CONSUMER_SECRET="your-consumer-secret"
# Generate SSL certificates (see README for details)
npx node index.js

Claude Desktop Configuration

Add to Claude Desktop config.json:

"mcpServers": {
  "evernote": {
    "command": "npx",
    "args": ["evernote-mcp-server"]
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.