[build-system] requires = ["hatchling>=1.24"] build-backend = "hatchling.build" [project] name = "kibana-mcp" version = "0.2.2" description = "MCP server for Kibana / Elasticsearch — log search, aggregations, index discovery, dashboards." readme = "README.md" license = "MIT" requires-python = ">=3.10" authors = [ { name = "Mikhail Shchegolev" }, ] keywords = ["mcp", "kibana", "elasticsearch", "logs", "observability", "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.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: System :: Logging", "Topic :: Software Development :: Libraries :: Python Modules", ] dependencies = [ "mcp>=1.2,<2", "requests>=2.31", "urllib3>=2.0", "pydantic>=2.0", "typing-extensions>=4.5; python_version < '3.12'", ] [project.optional-dependencies] dev = [ "pytest>=7", "ruff>=0.5", "responses>=0.25", ] opensearch = [ "opensearch-py>=2.4", "boto3>=1.26", ] [project.scripts] kibana-mcp = "kibana_mcp.server:main" [project.urls] Homepage = "https://github.com/mshegolev/kibana-mcp" Issues = "https://github.com/mshegolev/kibana-mcp/issues" [tool.hatch.build.targets.wheel] packages = ["src/kibana_mcp"] [tool.ruff] line-length = 120 target-version = "py310" [tool.ruff.lint] select = ["E", "F", "W", "I", "B", "UP"] [tool.pytest.ini_options] testpaths = ["tests"]