MCP Catalogs
Home

ultimate_mcp_server vs NornicDB

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

ultimate_mcp_server
by Dicklesworthstone
NornicDB
by orneryd
Stars★ 149★ 734
30d uses
Score8552
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
DatabaseKnowledge GraphAI / LLM Tools
LanguagePythonGo
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.

NornicDB · Summary

NornicDB is a distributed graph+vector database with native MCP server support for AI applications.

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

NornicDB · Use cases

  • Agent memory and Graph-RAG systems
  • Knowledge graphs with temporal versioning
  • AI applications requiring hybrid graph and vector operations

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

NornicDB · Install

Docker Installation

# Apple Silicon
docker run -d --name nornicdb -p 7474:7474 -p 7687:7687 -v nornicdb-data:/data timothyswt/nornicdb-arm64-metal-bge:latest

# AMD64 / CPU only
docker run -d --name nornicdb -p 7474:7474 -p 7687:7687 -v nornicdb-data:/data timothyswt/nornicdb-amd64-cpu-bge:latest

From Source

git clone https://github.com/orneryd/NornicDB.git
cd NornicDB
go build -o nornicdb ./cmd/nornicdb
./nornicdb serve

Claude Desktop Configuration

To use the MCP server with Claude Desktop, add to your claude_desktop_config.json:

{
  "mcpServers": {
    "nornicdb": {
      "command": "nornicdb",
      "args": ["mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.