MCP Catalogs
Home

ultimate_mcp_server vs mem0-mcp

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

ultimate_mcp_server
by Dicklesworthstone
mem0-mcp
by pinkpixel-dev
Stars★ 149★ 95
30d uses
Score8549
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
AI / LLM ToolsDeveloper ToolsDatabase
LanguagePythonJavaScript
Last commit2 mo ago1 mo ago

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.

mem0-mcp · Summary

An MCP server providing persistent memory for AI agents using Mem0.ai with cloud, Supabase, or local storage options.

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

mem0-mcp · Use cases

  • Enabling long-term memory in conversational AI agents
  • Personalizing AI interactions based on user history
  • Building AI assistants that remember user preferences across sessions

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

mem0-mcp · Install

Installation

Via Smithery

npx -y @smithery/cli install @pinkpixel-dev/mem0-mcp-server --client claude

Global Installation

npm install -g @pinkpixel/mem0-mcp

Configure Claude Desktop

Add this to your Claude Desktop config.json:

**Cloud Storage:**

{
  "mcpServers": {
    "mem0-mcp": {
      "command": "mem0-mcp",
      "env": {
        "MEM0_API_KEY": "YOUR_MEM0_API_KEY",
        "DEFAULT_USER_ID": "user123"
      },
      "alwaysAllow": [
        "add_memory",
        "search_memory",
        "delete_memory"
      ]
    }
  }
}

**Supabase Storage:**

{
  "mcpServers": {
    "mem0-mcp": {
      "command": "mem0-mcp",
      "env": {
        "SUPABASE_URL": "YOUR_SUPABASE_URL",
        "SUPABASE_KEY": "YOUR_SUPABASE_KEY",
        "OPENAI_API_KEY": "YOUR_OPENAI_API_KEY"
      },
      "alwaysAllow": [
        "add_memory",
        "search_memory",
        "delete_memory"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.