[project] name = "mcp-cucm-axl" version = "0.1.0" description = "Read-only MCP server for CUCM 15 AXL — exposes executeSQLQuery + Informix data dictionary introspection, with schema-grounded prompts that pull from the sibling cisco-docs index. Built for LLM-driven cluster auditing." authors = [{name = "Ryan Malloy", email = "ryan@supported.systems"}] readme = "README.md" license = {text = "MIT"} requires-python = ">=3.11" dependencies = [ "fastmcp>=3.2", "zeep>=4.3", "platformdirs>=4.9", "numpy>=1.26", "python-dotenv>=1.0", ] [project.optional-dependencies] test = [ "pytest>=8.0", "pytest-asyncio>=0.24", ] [project.scripts] mcp-cucm-axl = "mcp_cucm_axl.server:main" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/mcp_cucm_axl"] [tool.ruff] line-length = 100 target-version = "py311" [tool.pytest.ini_options] testpaths = ["tests"] asyncio_mode = "auto"