MCP Catalogs
Home

ultimate_mcp_server vs shebe

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

ultimate_mcp_server
by Dicklesworthstone
shebe
by shebe-oss
Stars★ 149★ 32
30d uses
Score8543
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
Developer ToolsSearchAI / LLM Tools
LanguagePythonRust
Last commit2 mo ago3 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.

shebe · Summary

Fast BM25 code search tool with 14 MCP tools for AI coding agents to find references and search codebases.

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

shebe · Use cases

  • Finding all references to a symbol in large codebases for refactoring
  • Searching polyglot codebases for specific patterns or functions
  • Impact analysis before making changes to unfamiliar repositories

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

shebe · Install

Installation

**Homebrew (macOS and Linux):**

brew tap shebe-oss/tap
brew install shebe

**Manual download (Linux x86_64):**

export SHEBE_VERSION=v0.5.8
curl -LO "https://github.com/shebe-oss/shebe-releases/releases/download/${SHEBE_VERSION}/shebe-${SHEBE_VERSION}-linux-x86_64.tar.gz"
curl -LO "https://github.com/shebe-oss/shebe-releases/releases/download/${SHEBE_VERSION}/shebe-${SHEBE_VERSION}-linux-x86_64.tar.gz.sha256"
sha256sum -c shebe-${SHEBE_VERSION}-linux-x86_64.tar.gz.sha256
tar -xzf shebe-${SHEBE_VERSION}-linux-x86_64.tar.gz
sudo mv shebe shebe-mcp /usr/local/bin/

**Claude Desktop Configuration:** Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "shebe": {
      "command": "shebe-mcp",
      "args": []
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.