ultimate_mcp_server vs MARM-Systems
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | MARM-Systems by Lyellr88 | |
|---|---|---|
| Stars | ★ 149 | ★ 288 |
| 30d uses | — | — |
| Score | 85 | 51 |
| 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.
MARM-Systems · Summary
MARM MCP server provides persistent memory and structured session context for AI agents across tools.
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
MARM-Systems · Use cases
- Enabling long-term memory for AI agents across multiple conversation sessions
- Facilitating knowledge sharing between different AI assistants (Claude, Gemini, etc.)
- Providing persistent memory for development environments and technical workflows
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_serverMARM-Systems · Install
Installation
**Docker Install (Recommended):**
docker pull lyellr88/marm-mcp-server:latest
docker run -d --name marm-mcp-server -p 8001:8001 -v ~/.marm:/home/marm/.marm lyellr88/marm-mcp-server:latest
claude mcp add --transport http marm-memory http://localhost:8001/mcp**Local Install:**
pip install marm-mcp-server==2.2.6
pip install -r marm-mcp-server/requirements.txt
python marm-mcp-server
claude mcp add --transport http marm-memory http://localhost:8001/mcp**Stdio Install:**
pip install marm-mcp-server==2.2.6
pip install -r marm-mcp-server/requirements_stdio.txt
claude mcp add --transport stdio marm-memory-stdio python "path/to/marm-mcp-server/server_stdio.py"
python marm-mcp-server/server_stdio.py**Claude Desktop Configuration (JSON):**
{
"mcpServers": {
"marm-memory": {
"httpUrl": "http://localhost:8001/mcp",
"authentication": {
"type": "oauth",
"clientId": "local_client_b6f3a01e",
"clientSecret": "local_secret_ad6703cd2b4243ab"
}
}
}
}