[project] name = "elasticsearch-mcp-server" version = "2.1.3" description = "MCP Server for interacting with Elasticsearch and OpenSearch" readme = "README.md" requires-python = ">=3.10" dependencies = [ "elasticsearch==8.17.2", "opensearch-py==2.8.0", "mcp>=1.17.0,<2.0.0", "python-dotenv==1.1.0", "fastmcp==2.13.0", "gcf-python==2.6.0", "uvicorn>=0.35.0", "pydantic>=2.11.0,<2.12.0", "tomli==2.2.1", "tomli-w==1.2.0", ] [project.license] file = "LICENSE" [project.scripts] elasticsearch-mcp-server = "src.server:elasticsearch_mcp_server" opensearch-mcp-server = "src.server:opensearch_mcp_server" [tool.hatch.build.targets.wheel] packages = [ "src", ] [tool.pytest.ini_options] testpaths = [ "tests", ] pythonpath = [ ".", ] markers = [ "unit: fast tests that do not require external services", "e2e: end-to-end tests that require Docker and Testcontainers", "k8s: Kubernetes end-to-end tests that require kind, kubectl, and helm", ] [build-system] requires = [ "hatchling", ] build-backend = "hatchling.build" [dependency-groups] dev = [ "pytest>=9.0.3", "testcontainers>=4.14.2", ]