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 | — | — |
| Score | 48 | 85 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | AI / LLM ToolsBrowser AutomationFile System |
| Language | Python | Python |
| Last commit | 2 mo ago | 2 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 zikkaronAdd 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 outcomesultimate_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_server