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

19
pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "hana-performance-mcp"
version = "0.1.0"
description = "SAP HANA Performance MCP Server — query plan analysis, PlanViz export, and monitoring tools"
requires-python = ">=3.11"
dependencies = [
"mcp[cli]>=1.27.0",
"hdbcli>=2.21.31",
]
[project.scripts]
hana-performance-mcp = "hana_performance_mcp.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/hana_performance_mcp"]