MCP Catalogs
Home

ultimate_mcp_server vs mcp-memory-service

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

ultimate_mcp_server
by Dicklesworthstone
mcp-memory-service
by doobidoo
Stars★ 149★ 1,848
30d uses
Score8556
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
AI / LLM ToolsKnowledge GraphDeveloper Tools
LanguagePythonPython
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.

mcp-memory-service · Summary

Persistent memory service for AI agents with REST API, MCP, OAuth, and knowledge graph functionality.

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

mcp-memory-service · Use cases

  • Persistent memory for AI agents across conversation sessions
  • Multi-agent systems with shared knowledge and inter-agent messaging
  • Self-hosted alternative to commercial memory APIs with privacy control
  • Remote memory service for claude.ai browser integration

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

mcp-memory-service · Install

# Basic installation
pip install mcp-memory-service

# Start the server
MCP_ALLOW_ANONYMOUS_ACCESS=true memory server --http

For Claude Desktop integration, add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-memory": {
      "command": "python",
      "args": ["-m", "mcp_memory_service.server"],
      "env": {
        "MCP_ALLOW_ANONYMOUS_ACCESS": "true",
        "MCP_STREAMABLE_HTTP_MODE": "1"
      }
    }
  }
}

For remote MCP with claude.ai browser:

MCP_STREAMABLE_HTTP_MODE=1 MCP_SSE_HOST=0.0.0.0 MCP_SSE_PORT=8765 python -m mcp_memory_service.server
Comparison generated from public README + GitHub signals. Last updated automatically.