ultimate_mcp_server vs wanaku
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | wanaku by wanaku-ai | |
|---|---|---|
| Stars | ★ 149 | ★ 112 |
| 30d uses | — | — |
| Score | 85 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsOps & InfraAI / LLM Tools |
| Language | Python | Java |
| Last commit | 2 mo ago | this month |
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.
wanaku · Summary
Wanaku MCP Router is a Java-based gateway that connects and routes MCP servers with extensive connectivity options.
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
wanaku · Use cases
- Centralized management of multiple MCP servers in enterprise environments
- Creating secure bridges between isolated AI applications and services
- Extending AI capabilities with custom tools using Apache Camel components
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_serverwanaku · Install
Installation
Using JBang (requires Java 21+)
jbang app install wanaku@wanaku-ai/wanakuUsing Binary Download
- Download the latest binary from [GitHub Releases](https://github.com/wanaku-ai/wanaku/releases)
- Make the binary executable:
chmod +x wanaku - Add to PATH:
sudo mv wanaku /usr/local/bin/
Basic Usage
# Authenticate with Wanaku router
wanaku auth login --url http://localhost:8080
# List available tools
wanaku tools list
# Add a new tool
wanaku tools add --uri http://example.com/api --service httpClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"wanaku": {
"command": "wanaku",
"args": ["server"]
}
}
}