ultimate_mcp_server vs sourcerer-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | sourcerer-mcp by st3v3nmw | |
|---|---|---|
| Stars | ★ 149 | ★ 113 |
| 30d uses | — | — |
| Score | 85 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsSearchAI / LLM Tools |
| Language | Python | Go |
| Last commit | 2 mo ago | 6 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.
sourcerer-mcp · Summary
MCP server for semantic code search that helps AI agents navigate codebases efficiently without token waste.
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
sourcerer-mcp · Use cases
- AI-assisted code navigation and understanding in large codebases
- Efficient code refactoring and modernization by finding similar patterns
- Documentation generation through semantic search of relevant code
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_serversourcerer-mcp · Install
Installation
Go
go install github.com/st3v3nmw/sourcerer-mcp/cmd/sourcerer@latestHomebrew
brew tap st3v3nmw/tap
brew install st3v3nmw/tap/sourcererConfiguration for Claude Code
claude mcp add sourcerer -e OPENAI_API_KEY=your-openai-api-key -e SOURCERER_WORKSPACE_ROOT=$(pwd) -- sourcerermcp.json Configuration
{
"mcpServers": {
"sourcerer": {
"command": "sourcerer",
"env": {
"OPENAI_API_KEY": "your-openai-api-key",
"SOURCERER_WORKSPACE_ROOT": "/path/to/your/project"
}
}
}
}