MCP Catalogs
Home

git-mcp-server vs ultimate_mcp_server

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

git-mcp-server
by cyanheads
ultimate_mcp_server
by Dicklesworthstone
Stars★ 215★ 149
30d uses
Score5285
Official
Categories
Developer ToolsAI / LLM ToolsFile System
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last committhis month2 mo ago

git-mcp-server · Summary

A comprehensive MCP server that provides AI agents with 28 Git operations including clone, commit, branch management, and more.

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.

git-mcp-server · Use cases

  • AI-assisted code review and commit management
  • Automated repository maintenance and version control
  • Integration of Git operations into AI agent workflows

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

git-mcp-server · Install

Installation

The git-mcp-server can be installed and run with either Node.js or Bun:

# Node.js
npx @cyanheads/git-mcp-server@latest

# Bun
bunx @cyanheads/git-mcp-server@latest
Claude Desktop Configuration

Add the following to your Claude Desktop config file (claude_desktop_config.json):

{
  "mcpServers": {
    "git-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": ["@cyanheads/git-mcp-server@latest"],
      "env": {
        "MCP_TRANSPORT_TYPE": "stdio",
        "MCP_LOG_LEVEL": "info",
        "GIT_BASE_DIR": "~/Developer/",
        "LOGS_DIR": "~/Developer/logs/git-mcp-server/",
        "GIT_USERNAME": "your-username",
        "GIT_EMAIL": "your-email",
        "GIT_SIGN_COMMITS": "true"
      }
    }
  }
}

For Bun users, replace the command with bunx.

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.