MCP Catalogs
Home

Zikkaron vs ultimate_mcp_server

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

Zikkaron
by amanhij
ultimate_mcp_server
by Dicklesworthstone
Stars★ 59★ 149
30d uses
Score4885
Official
Categories
AI / LLM ToolsDeveloper ToolsKnowledge Graph
AI / LLM ToolsBrowser AutomationFile System
LanguagePythonPython
Last commit2 mo ago2 mo ago

Zikkaron · Summary

Biologically-inspired persistent memory engine for Claude Code with 26 cognitive subsystems, local SQLite storage, and advanced memory recall capabilities.

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.

Zikkaron · Use cases

  • Long-term code projects where context needs to persist across sessions
  • Complex debugging sessions where Claude needs to remember previous approaches
  • Multi-session development where architectural decisions must be preserved
  • Teams working on shared codebases with consistent implementation patterns

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

Zikkaron · Install

pip install zikkaron

Add to your Claude Code config:

{
  "mcpServers": {
    "zikkaron": {
      "command": "zikkaron"
    }
  }
}

Tell Claude how to use it by adding instructions to your global ~/.claude/CLAUDE.md:

## Memory
- On every new session, call `recall` with the current project name
- Before starting any task, call `get_project_context` for the current directory
- After completing significant work, call `remember` to store decisions and outcomes

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.