ultimate_mcp_server vs getnote-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | getnote-mcp by iswalle | |
|---|---|---|
| Stars | ★ 149 | ★ 61 |
| 30d uses | — | — |
| Score | 85 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | ProductivityKnowledge GraphAI / LLM Tools |
| Language | Python | JavaScript |
| Last commit | 2 mo ago | this month |
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.
getnote-mcp · Summary
MCP server for GetNote, a personal note management tool, enabling AI to create, edit, search and organize notes.
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
getnote-mcp · Use cases
- AI assistants helping users capture and organize thoughts through voice commands like 'save this note' or 'search for previous notes about X'
- Automating knowledge management by having AI process external content (blogs, live streams) and store it in organized knowledge bases
- Implementing time tracking systems using note internal links to automatically connect daily logs with project notes
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_servergetnote-mcp · Install
Installation
# Direct execution (recommended, no cloning needed)
npx @getnote/mcp
# Or global installation
npm install -g @getnote/mcpClaude Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"getnote": {
"command": "node",
"args": ["/path/to/getnote-mcp/dist/index.js"],
"env": {
"GETNOTE_API_KEY": "your_api_key_here",
"GETNOTE_CLIENT_ID": "your_client_id_here"
}
}
}
}