ultimate_mcp_server vs suse-ai-up
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | suse-ai-up by SUSE | |
|---|---|---|
| Stars | ★ 149 | ★ 28 |
| 30d uses | — | — |
| Score | 85 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Ops & InfraAI / LLM ToolsDeveloper Tools |
| Language | Python | Go |
| Last commit | 2 mo ago | 1 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.
suse-ai-up · Summary
SUSE AI Universal Proxy is a comprehensive platform for managing and proxying MCP servers with secure orchestration across multiple microservices.
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
suse-ai-up · Use cases
- Enterprise AI service orchestration with centralized management
- Multi-tenant MCP server deployment with authentication and security
- AI application development with plugin-based extensibility
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_serversuse-ai-up · Install
Installation Options
Helm Installation (Recommended)
- Clone the repository:
git clone https://github.com/suse/suse-ai-up - Navigate to the directory:
cd suse-ai-up - In values.yaml, set:
- service.type: LoadBalancer - auth.method: development (for no auth)
- Install using the helm chart:
``bash helm install suse-ai-up ./charts/suse-ai-up ``
- Access the service at the IP address shown via
kubectl get svc suse-ai-up-service
Local Development
git clone https://github.com/suse/suse-ai-up.git
cd suse-ai-up
go run ./cmd/uniproxy**Claude Desktop Integration:** Add this to your Claude Desktop config.json:
"mcpServers": {
"suse-ai-up": {
"command": "docker",
"args": ["run", "--rm", "-p", "8911:8911", "suse/suse-ai-up"]
}
}