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 | — | — |
| Score | 47 | 85 |
| Official | — | — |
| Categories | ProductivityKnowledge GraphAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | Thrift | Python |
| Last commit | 2 mo ago | 2 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 --buildLocal 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.jsClaude Desktop Configuration
Add to Claude Desktop config.json:
"mcpServers": {
"evernote": {
"command": "npx",
"args": ["evernote-mcp-server"]
}
}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