MCP Catalogs
Home

nocturne_memory vs ultimate_mcp_server

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

nocturne_memory
by Dataojitori
ultimate_mcp_server
by Dicklesworthstone
Stars★ 1,080★ 149
30d uses
Score5585
Official
Categories
AI / LLM ToolsKnowledge GraphDeveloper Tools
AI / LLM ToolsBrowser AutomationFile System
LanguagePythonPython
Last committhis month2 mo ago

nocturne_memory · Summary

A long-term memory server for MCP agents that enables persistent, cross-session identity and context.

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.

nocturne_memory · Use cases

  • Enable AI agents to maintain consistent identity and context across multiple LLM platforms
  • Provide AI with long-term personal memory for better relationship-building with users
  • Allow AI to autonomously organize and retrieve complex information structures across sessions

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

nocturne_memory · Install

Installation

Prerequisites

  • Python 3.10+
  • Node.js (for building the dashboard frontend)

Step 1: Clone & Install Dependencies

git clone https://github.com/Dataojitori/nocturne_memory.git
cd nocturne_memory
pip install -r backend/requirements.txt

Step 2: Connect to Your AI Client

Add to your AI client's MCP configuration (replace with your actual path):

{
  "mcpServers": {
    "nocturne_memory": {
      "command": "python",
      "args": ["/path/to/nocturne_memory/backend/mcp_server.py"]
    }
  }
}

For Claude Desktop

{
  "mcpServers": {
    "nocturne-memory": {
      "command": "python",
      "args": ["/path/to/nocturne_memory/backend/mcp_server.py"]
    }
  }
}

For Antigravity (Windows)

Due to CRLF/LF issues on Windows, use the wrapper:

{
  "mcpServers": {
    "nocturne_memory": {
      "command": "python",
      "args": ["/path/to/nocturne_memory/backend/mcp_wrapper.py"]
    }
  }
}

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