codebase-memory-mcp vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
codebase-memory-mcp by DeusData | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 2,363 | ★ 149 |
| 30d uses | — | — |
| Score | 58 | 85 |
| Official | — | — |
| Categories | Developer ToolsKnowledge GraphAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | C | Python |
| Last commit | this month | 2 mo ago |
codebase-memory-mcp · Summary
High-performance code intelligence MCP server that indexes codebases into a persistent knowledge graph with sub-ms queries and 155 language support.
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.
codebase-memory-mcp · Use cases
- Large codebase architecture analysis and documentation
- Code impact assessment before refactoring
- Cross-service dependency mapping in microservices
- Dead code detection and optimization
- Semantic code search across entire repositories
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
codebase-memory-mcp · Install
Quick Start
**One-line install** (macOS / Linux):
curl -fsSL https://raw.githubusercontent.com/DeusData/codebase-memory-mcp/main/install.sh | bash**Windows** (PowerShell):
# 1. Download the installer
Invoke-WebRequest -Uri https://raw.githubusercontent.com/DeusData/codebase-memory-mcp/main/install.ps1 -OutFile install.ps1
# 2. (Optional but recommended) Inspect the script
notepad install.ps1
# 3. Run it
.\install.ps1Claude Desktop Configuration
- Add to Claude Desktop config:
{
"mcpServers": {
"codebase-memory": {
"command": "codebase-memory-mcp",
"args": []
}
}
}- Restart Claude Desktop
- Say "Index this project" to begin
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_server