ultimate_mcp_server vs claude-memory-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | claude-memory-mcp by tanaka-kun-dev | |
|---|---|---|
| Stars | ★ 149 | ★ 0 |
| 30d uses | — | — |
| Score | 85 | 33 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | File SystemAI / LLM ToolsDeveloper Tools |
| Language | Python | JavaScript |
| 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.
claude-memory-mcp · Summary
MCP server for persistent file-based memory management with tools to read, search, and update Claude's memory files.
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
claude-memory-mcp · Use cases
- Enabling non-Claude Code clients like Claude Desktop or Cursor to access Claude's memory system
- Providing programmatic access to manage memory entries across different MCP-compatible AI assistants
- Creating a persistent memory layer for personal AI assistants that can be shared across tools
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_serverclaude-memory-mcp · Install
npm install -g @tanaka-kun-dev/claude-memory-mcpClaude Code
Add to your .claude/settings.json:
{
"mcpServers": {
"memory": {
"command": "claude-memory-mcp"
}
}
}Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "claude-memory-mcp"
}
}
}For custom memory directory, use environment variable CLAUDE_MEMORY_DIR.