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 | — | — |
| Score | 85 | 28 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsDeveloper ToolsSearch |
| Language | Python | Python |
| Last commit | 2 mo ago | 13 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
- 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_serversearch_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" > .envFor 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"
]
}
}
}