We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfb1b29 commit 8cde3d4Copy full SHA for 8cde3d4
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "elasticsearch-mcp-server"
3
-version = "1.0.0"
+version = "2.0.0"
4
description = "MCP Server for interacting with Elasticsearch and OpenSearch"
5
readme = "README.md"
6
requires-python = ">=3.10"
@@ -11,6 +11,8 @@ dependencies = [
11
"python-dotenv>=1.0.0",
12
"fastmcp>=0.4.0",
13
"anthropic>=0.49.0",
14
+ "tomli>=2.2.1",
15
+ "tomli-w>=1.2.0",
16
]
17
18
[project.license]
@@ -21,7 +23,9 @@ elasticsearch-mcp-server = "src.server:elasticsearch_mcp_server"
21
23
opensearch-mcp-server = "src.server:opensearch_mcp_server"
22
24
25
[tool.hatch.build.targets.wheel]
-packages = ["src"]
26
+packages = [
27
+ "src",
28
+]
29
30
[build-system]
31
requires = [
0 commit comments