ultimate_mcp_server vs mcp-memory-service
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | mcp-memory-service by doobidoo | |
|---|---|---|
| Stars | ★ 149 | ★ 1,848 |
| 30d uses | — | — |
| Score | 85 | 56 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsKnowledge GraphDeveloper Tools |
| Language | Python | Python |
| 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.
mcp-memory-service · Summary
Persistent memory service for AI agents with REST API, MCP, OAuth, and knowledge graph functionality.
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
mcp-memory-service · Use cases
- Persistent memory for AI agents across conversation sessions
- Multi-agent systems with shared knowledge and inter-agent messaging
- Self-hosted alternative to commercial memory APIs with privacy control
- Remote memory service for claude.ai browser integration
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_servermcp-memory-service · Install
# Basic installation
pip install mcp-memory-service
# Start the server
MCP_ALLOW_ANONYMOUS_ACCESS=true memory server --httpFor Claude Desktop integration, add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-memory": {
"command": "python",
"args": ["-m", "mcp_memory_service.server"],
"env": {
"MCP_ALLOW_ANONYMOUS_ACCESS": "true",
"MCP_STREAMABLE_HTTP_MODE": "1"
}
}
}
}For remote MCP with claude.ai browser:
MCP_STREAMABLE_HTTP_MODE=1 MCP_SSE_HOST=0.0.0.0 MCP_SSE_PORT=8765 python -m mcp_memory_service.server