MCP Catalogs
Home

ultimate_mcp_server vs search_docs_mcp

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

ultimate_mcp_server
by Dicklesworthstone
search_docs_mcp
by mostafa-ghaith
Stars★ 149★ 1
30d uses
Score8528
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
AI / LLM ToolsDeveloper ToolsSearch
LanguagePythonPython
Last commit2 mo ago13 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.

search_docs_mcp · Summary

MCP server for semantic search across AI library documentation using Serper API

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

search_docs_mcp · Use cases

  • Search for the latest API documentation in supported AI libraries
  • Keep AI agents up-to-date with recent library features and changes
  • Quickly find specific implementation details from official docs

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

search_docs_mcp · Install

# Clone the repository
git clone https://github.com/mostafa-ghaith/search-docs-mcp.git
cd search-docs-mcp

# Create and activate virtual environment
python -m venv .venv
source .venv/bin/activate

# Install dependencies
pip install -e .

# Create .env file with API key
echo "SERPER_API_KEY=your_api_key_here" > .env

For Claude Desktop, add this to your config:

{
  "mcpServers": {
    "search-docs-mcp": {
      "command": "uv",
      "args": [
        "--directory",
        "/ABSOLUTE/PATH/TO/YOUR/search-docs-mcp",
        "run",
        "main.py"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.