ultimate_mcp_server vs hana-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | hana-mcp-server by HatriGt | |
|---|---|---|
| Stars | ★ 149 | ★ 54 |
| 30d uses | — | — |
| Score | 85 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | Python | JavaScript |
| Last commit | 2 mo ago | 2 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.
hana-mcp-server · Summary
SAP HANA MCP server enables AI clients to query HANA databases with guardrails and merge business metadata.
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
hana-mcp-server · Use cases
- Enable AI assistants to query SAP HANA databases with proper authentication and SQL guardrails
- Connect AI development tools like Claude Code and VS Code to enterprise HANA data
- Provide HTTP API for business applications to integrate with HANA via MCP protocol
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_serverhana-mcp-server · Install
Installation
Method 1: Using npx (recommended)
Add to your Claude Desktop config:
{
"mcpServers": {
"HANA Database": {
"command": "npx",
"args": ["-y", "hana-mcp-server"],
"env": {
"HANA_HOST": "your-hana-host.com",
"HANA_PORT": "443",
"HANA_USER": "your-username",
"HANA_PASSWORD": "your-password",
"HANA_SCHEMA": "your-schema",
"HANA_SSL": "true",
"HANA_ENCRYPT": "true",
"HANA_VALIDATE_CERT": "true",
"LOG_LEVEL": "info"
}
}
}
}Method 2: Global install
npm install -g hana-mcp-serverMethod 3: Clone and run
git clone <repository-url>
cd hana-mcp-server
npm install
node hana-mcp-server.js