MCP Catalogs
Home

codebase-mcp vs ultimate_mcp_server

Side-by-side comparison to help you pick between these two MCP servers.

codebase-mcp
by danyQe
ultimate_mcp_server
by Dicklesworthstone
Stars★ 43★ 149
30d uses
Score4285
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
AI / LLM ToolsBrowser AutomationFile System
LanguagePythonPython
Last commit7 mo ago2 mo ago

codebase-mcp · Summary

Privacy-first AI coding assistant that turns Claude into a powerful MCP-based development tool with semantic search, memory, and quality-checked code generation.

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-mcp · Use cases

  • Creating new features with auto-formatting and quality-scoped code generation
  • Refactoring existing code with AI assistance and dependency injection patterns
  • Continuing development with persistent memory that recalls previous progress and mistakes

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-mcp · Install

Prerequisites

  • Python 3.11+
  • Claude Desktop (or any MCP-compatible client)
  • Git installed
  • [uv](https://github.com/astral-sh/uv) package manager (recommended)

Installation

  1. **Clone the repository:**
git clone https://github.com/danyQe/codebase-mcp.git
cd codebase-mcp
  1. **Install globally:**
# Install uv if you haven't
pip install uv

# Create virtual environment and install dependencies
uv venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
uv pip install -r requirements.txt

# Install formatters globally
pip install black ruff
  1. **Configure Gemini API:**
cp .env.example .env
# Get free API key from: https://aistudio.google.com/app/apikey
# Add to .env:
GEMINI_API_KEY=your_api_key_here
  1. **Configure Claude Desktop:**

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "codebase-manager": {
      "command": "/path/to/your/.venv/bin/python",
      "args": [
        "/path/to/codebase-mcp/mcp_server.py"
      ]
    }
  }
}
  1. **Start the FastAPI server:**
python main.py /path/to/your/project
  1. Use with Claude Desktop by restarting it and starting to chat - Claude now has access to 13+ MCP tools!

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.