ultimate_mcp_server vs mcp-bridgekit
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | mcp-bridgekit by mkbhardwas12 | |
|---|---|---|
| Stars | ★ 149 | ★ 60 |
| 30d uses | — | — |
| Score | 85 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsDeveloper ToolsOps & Infra |
| Language | Python | Python |
| Last commit | 2 mo ago | 3 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.
mcp-bridgekit · Summary
A bridge that converts MCP stdio servers to HTTP endpoints with session pooling and background job handling.
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
mcp-bridgekit · Use cases
- AI chatbot with tool calling capabilities
- Multi-tenant SaaS platform with customer-specific MCP tools
- Long-running data processing that exceeds HTTP timeout limits
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_servermcp-bridgekit · Install
Installation
# Clone & install
git clone https://github.com/mkbhardwas12/mcp-bridgekit.git
cd mcp-bridgekit
# Copy environment config
cp .env.example .env # edit if needed
# Install (pick one)
uv sync --dev # recommended
pip install -e ".[dev]" # alternative
# Start Redis (required for job queue)
docker run -d -p 6379:6379 redis:7-alpine
# Start server
uvicorn mcp_bridgekit.app:app --reload
# Start worker
mcp-bridgekit-worker