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.
20 lines
489 B
TOML
20 lines
489 B
TOML
[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"]
|