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 | — | — |
| Score | 85 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | DatabaseKnowledge GraphAI / LLM Tools |
| Language | Python | Go |
| Last commit | 2 mo ago | this 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
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverNornicDB · 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:latestFrom Source
git clone https://github.com/orneryd/NornicDB.git
cd NornicDB
go build -o nornicdb ./cmd/nornicdb
./nornicdb serveClaude Desktop Configuration
To use the MCP server with Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"nornicdb": {
"command": "nornicdb",
"args": ["mcp"]
}
}
}