Files
HANAPerformanceMCP/pyproject.toml
Erhan Keseli 8412e1801b 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.
2026-04-06 20:38:29 +02:00

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"]