SAP HANA Performance MCP Server

MCP server for SAP HANA performance analysis: query plan capture,
PlanViz export, expensive statement monitoring, plan cache inspection,
table statistics, memory stats, and active session tracking.
This commit is contained in:
Erhan Keseli
2026-04-06 20:38:29 +02:00
commit 8412e1801b
22 changed files with 2247 additions and 0 deletions

20
.mcp.json.example Normal file
View File

@@ -0,0 +1,20 @@
{
"mcpServers": {
"hana-performance": {
"command": "uv",
"args": [
"--directory", "/path/to/HANAPerformanceMCP",
"run", "hana-performance-mcp"
],
"env": {
"HANA_HOST": "your-hana-host",
"HANA_PORT": "30015",
"HANA_USER": "DBADMIN",
"HANA_PASSWORD": "your-password",
"HANA_ENCRYPT": "true",
"HANA_SSLVALIDATECERTIFICATE": "false",
"HANA_DATABASE_NAME": "your-tenant-db"
}
}
}
}