hana-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
hana-mcp-server by HatriGt | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 54 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 2 mo ago | this month |
hana-mcp-server · Summary
SAP HANA MCP server enables AI clients to query HANA databases with guardrails and merge business metadata.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
hana-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.jseverything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything