pyproject.toml•901 B
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-ambari-api"
version = "0.0.0"
description = "Model Context Protocol (MCP) server for Apache Ambari API integration. Provides comprehensive tools for managing Hadoop clusters including service operations, configuration management, status monitoring, and request tracking."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiohttp>=3.12.15",
"fastmcp>=2.12.3",
]
[project.scripts]
mcp-ambari-api = "mcp_ambari_api.mcp_main:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["mcp_ambari_api*"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
# Ensure non-Python resource files ship inside the wheel
# You can broaden to ["*.md"] if more markdown resources are added later.
mcp_ambari_api = ["prompt_template.md"]