[project]
name = "mcp-container-tools"
version = "0.1.0"
description = "MCP server for Docker, Kubernetes, and Azure Application Insights"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
authors = [
{name = "simseksem"}
]
keywords = [
"mcp",
"docker",
"kubernetes",
"azure",
"application-insights",
"logging",
"devops",
"claude",
"anthropic",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Logging",
"Topic :: System :: Monitoring",
]
dependencies = [
"mcp>=1.0.0",
"pydantic>=2.0.0",
"httpx>=0.27.0",
]
[project.optional-dependencies]
azure = [
"azure-identity>=1.15.0",
"azure-monitor-query>=1.2.0",
]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.4.0",
"mypy>=1.10.0",
]
all = [
"mcp-container-tools[azure,dev]",
]
[project.urls]
Homepage = "https://github.com/simseksem/mcp-container-tools"
Repository = "https://github.com/simseksem/mcp-container-tools"
Issues = "https://github.com/simseksem/mcp-container-tools/issues"
[project.scripts]
mcp-server = "mcp_server.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_server"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "C4", "SIM"]
[tool.mypy]
python_version = "3.11"
strict = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]