ultimate_mcp_server vs persistent-ai-memory
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | persistent-ai-memory by savantskie | |
|---|---|---|
| Stars | ★ 149 | ★ 230 |
| 30d uses | — | — |
| Score | 85 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | Python |
| Last commit | 2 mo ago | 1 mo ago |
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.
persistent-ai-memory · Summary
Persistent AI memory system for LLMs with MCP server integration, database storage, and conversation tracking.
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
persistent-ai-memory · Use cases
- Enabling long-term memory in OpenWebUI chat assistants through the plugin integration
- Adding conversation history and memory capabilities to MCP-compatible AI assistants
- Implementing personalized AI assistants with persistent memory across sessions
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_serverpersistent-ai-memory · Install
Installation
# Linux/macOS
pip install git+https://github.com/savantskie/persistent-ai-memory.git
# Windows (same command, just use Command Prompt or PowerShell)
pip install git+https://github.com/savantskie/persistent-ai-memory.gitMCP Server Integration
# Via mcpo
python -m ai_memory_mcp_serverClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"ai-memory": {
"command": "python",
"args": ["-m", "ai_memory_mcp_server"]
}
}
}