MCP Catalogs
Home

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
Score8548
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
ProductivityKnowledge GraphAI / LLM Tools
LanguagePythonJavaScript
Last commit2 mo agothis 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

  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

getnote-mcp · Install

Installation

# Direct execution (recommended, no cloning needed)
npx @getnote/mcp

# Or global installation
npm install -g @getnote/mcp

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