ultimate_mcp_server vs subcog
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | subcog by zircote | |
|---|---|---|
| Stars | ★ 149 | ★ 22 |
| 30d uses | — | — |
| Score | 85 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| Language | Python | Rust |
| 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.
subcog · Summary
Persistent memory system for AI coding assistants with MCP integration, hybrid search, and knowledge graph features.
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
subcog · Use cases
- Enhancing AI coding assistants with persistent memory of past decisions and solutions
- Search and retrieval of coding patterns and best practices across projects
- Knowledge graph analysis to understand relationships between code elements and decisions
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_serversubcog · Install
Subcog can be installed via multiple methods:
# Cargo (recommended for Rust developers)
cargo install subcog
# Homebrew (macOS/Linux)
brew install zircote/tap/subcog
# Docker
docker run --rm ghcr.io/zircote/subcog --help
# Binary download
curl -LO https://github.com/zircote/subcog/releases/latest/download/subcog-VERSION-TARGET.tar.gz
# npm/npx (fallback)
npx @zircote/subcog --helpTo use as an MCP server, add to Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"subcog": {
"command": "subcog",
"args": ["serve"]
}
}
}