elasticsearch-mcp-server 0.1.0__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of elasticsearch-mcp-server might be problematic. Click here for more details.

Files changed (22) hide show
  1. elasticsearch_mcp_server-0.1.2/.env +4 -0
  2. elasticsearch_mcp_server-0.1.2/.gitignore +6 -0
  3. elasticsearch_mcp_server-0.1.2/.python-version +1 -0
  4. {elasticsearch_mcp_server-0.1.0 → elasticsearch_mcp_server-0.1.2}/PKG-INFO +7 -6
  5. elasticsearch_mcp_server-0.1.2/docker-compose.yml +231 -0
  6. {elasticsearch_mcp_server-0.1.0 → elasticsearch_mcp_server-0.1.2}/pyproject.toml +8 -4
  7. elasticsearch_mcp_server-0.1.2/src/elasticsearch_mcp_server/__init__.py +5 -0
  8. elasticsearch_mcp_server-0.1.0/src/tools/base.py → elasticsearch_mcp_server-0.1.2/src/elasticsearch_mcp_server/es_client.py +6 -1
  9. {elasticsearch_mcp_server-0.1.0/src → elasticsearch_mcp_server-0.1.2/src/elasticsearch_mcp_server}/server.py +1 -1
  10. {elasticsearch_mcp_server-0.1.0/src → elasticsearch_mcp_server-0.1.2/src/elasticsearch_mcp_server}/tools/cluster.py +4 -3
  11. {elasticsearch_mcp_server-0.1.0/src → elasticsearch_mcp_server-0.1.2/src/elasticsearch_mcp_server}/tools/document.py +4 -3
  12. {elasticsearch_mcp_server-0.1.0/src → elasticsearch_mcp_server-0.1.2/src/elasticsearch_mcp_server}/tools/index.py +4 -3
  13. elasticsearch_mcp_server-0.1.2/uv.lock +445 -0
  14. elasticsearch_mcp_server-0.1.0/setup.cfg +0 -4
  15. elasticsearch_mcp_server-0.1.0/src/elasticsearch_mcp_server.egg-info/PKG-INFO +0 -292
  16. elasticsearch_mcp_server-0.1.0/src/elasticsearch_mcp_server.egg-info/SOURCES.txt +0 -14
  17. elasticsearch_mcp_server-0.1.0/src/elasticsearch_mcp_server.egg-info/dependency_links.txt +0 -1
  18. elasticsearch_mcp_server-0.1.0/src/elasticsearch_mcp_server.egg-info/requires.txt +0 -4
  19. elasticsearch_mcp_server-0.1.0/src/elasticsearch_mcp_server.egg-info/top_level.txt +0 -2
  20. elasticsearch_mcp_server-0.1.0/src/tools/__init__.py +0 -5
  21. {elasticsearch_mcp_server-0.1.0 → elasticsearch_mcp_server-0.1.2}/LICENSE +0 -0
  22. {elasticsearch_mcp_server-0.1.0 → elasticsearch_mcp_server-0.1.2}/README.md +0 -0
@@ -0,0 +1,4 @@
1
+ # Elasticsearch connection settings
2
+ ELASTIC_HOST=https://localhost:9200
3
+ ELASTIC_USERNAME=elastic
4
+ ELASTIC_PASSWORD=test123
@@ -0,0 +1,6 @@
1
+ .vscode
2
+ .idea
3
+ .venv
4
+ dist
5
+ __pycache__
6
+ *.egg-info
@@ -0,0 +1 @@
1
+ 3.10
@@ -1,7 +1,7 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: elasticsearch-mcp-server
3
- Version: 0.1.0
4
- Summary: Add your description here
3
+ Version: 0.1.2
4
+ Summary: MCP Server for interacting with Elasticsearch
5
5
  License: Apache License
6
6
  Version 2.0, January 2004
7
7
  http://www.apache.org/licenses/
@@ -203,12 +203,13 @@ License: Apache License
203
203
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
204
204
  See the License for the specific language governing permissions and
205
205
  limitations under the License.
206
+ License-File: LICENSE
206
207
  Requires-Python: >=3.10
207
- Description-Content-Type: text/markdown
208
208
  Requires-Dist: elasticsearch>=8.0.0
209
+ Requires-Dist: fastmcp>=0.4.0
209
210
  Requires-Dist: mcp>=1.0.0
210
211
  Requires-Dist: python-dotenv>=1.0.0
211
- Requires-Dist: fastmcp>=0.4.0
212
+ Description-Content-Type: text/markdown
212
213
 
213
214
  # Elasticsearch MCP Server
214
215
 
@@ -289,4 +290,4 @@ Now you can interact with your Elasticsearch cluster through Claude using natura
289
290
 
290
291
  ## License
291
292
 
292
- This project is licensed under the Apache License Version 2.0 - see the [LICENSE](LICENSE) file for details.
293
+ This project is licensed under the Apache License Version 2.0 - see the [LICENSE](LICENSE) file for details.
@@ -0,0 +1,231 @@
1
+ services:
2
+ setup:
3
+ image: docker.elastic.co/elasticsearch/elasticsearch:8.6.1
4
+ volumes:
5
+ - certs:/usr/share/elasticsearch/config/certs
6
+ user: "0"
7
+ command: >
8
+ bash -c '
9
+ if [ x${ELASTIC_PASSWORD} == x ]; then
10
+ echo "Set the ELASTIC_PASSWORD environment variable in the .env file";
11
+ exit 1;
12
+ fi;
13
+ if [ ! -f config/certs/ca.zip ]; then
14
+ echo "Creating CA";
15
+ bin/elasticsearch-certutil ca --silent --pem -out config/certs/ca.zip;
16
+ unzip config/certs/ca.zip -d config/certs;
17
+ fi;
18
+ if [ ! -f config/certs/certs.zip ]; then
19
+ echo "Creating certs";
20
+ echo -ne \
21
+ "instances:\n"\
22
+ " - name: es01\n"\
23
+ " dns:\n"\
24
+ " - es01\n"\
25
+ " - localhost\n"\
26
+ " ip:\n"\
27
+ " - 127.0.0.1\n"\
28
+ " - name: es02\n"\
29
+ " dns:\n"\
30
+ " - es02\n"\
31
+ " - localhost\n"\
32
+ " ip:\n"\
33
+ " - 127.0.0.1\n"\
34
+ " - name: es03\n"\
35
+ " dns:\n"\
36
+ " - es03\n"\
37
+ " - localhost\n"\
38
+ " ip:\n"\
39
+ " - 127.0.0.1\n"\
40
+ > config/certs/instances.yml;
41
+ bin/elasticsearch-certutil cert --silent --pem -out config/certs/certs.zip --in config/certs/instances.yml --ca-cert config/certs/ca/ca.crt --ca-key config/certs/ca/ca.key;
42
+ unzip config/certs/certs.zip -d config/certs;
43
+ fi;
44
+ echo "Setting file permissions"
45
+ chown -R root:root config/certs;
46
+ find . -type d -exec chmod 750 \{\} \;;
47
+ find . -type f -exec chmod 640 \{\} \;;
48
+ echo "Waiting for Elasticsearch availability";
49
+ until curl -s --cacert config/certs/ca/ca.crt https://es01:9200 | grep -q "missing authentication credentials"; do sleep 30; done;
50
+ echo "Setting kibana_system password";
51
+ until curl -s -X POST --cacert config/certs/ca/ca.crt -u "elastic:${ELASTIC_PASSWORD}" -H "Content-Type: application/json" https://es01:9200/_security/user/kibana_system/_password -d "{\"password\":\"kibana123\"}" | grep -q "^{}"; do sleep 10; done;
52
+ echo "All done!";
53
+ '
54
+ healthcheck:
55
+ test: ["CMD-SHELL", "[ -f config/certs/es01/es01.crt ]"]
56
+ interval: 1s
57
+ timeout: 5s
58
+ retries: 120
59
+
60
+ es01:
61
+ depends_on:
62
+ setup:
63
+ condition: service_healthy
64
+ image: docker.elastic.co/elasticsearch/elasticsearch:8.6.1
65
+ volumes:
66
+ - certs:/usr/share/elasticsearch/config/certs
67
+ - esdata01:/usr/share/elasticsearch/data
68
+ ports:
69
+ - 9200:9200
70
+ environment:
71
+ - node.name=es01
72
+ - cluster.name=es-mcp-cluster
73
+ - cluster.initial_master_nodes=es01,es02,es03
74
+ - discovery.seed_hosts=es02,es03
75
+ - ELASTIC_PASSWORD=${ELASTIC_PASSWORD}
76
+ - bootstrap.memory_lock=true
77
+ - xpack.security.enabled=true
78
+ - xpack.security.http.ssl.enabled=true
79
+ - xpack.security.http.ssl.key=certs/es01/es01.key
80
+ - xpack.security.http.ssl.certificate=certs/es01/es01.crt
81
+ - xpack.security.http.ssl.certificate_authorities=certs/ca/ca.crt
82
+ - xpack.security.transport.ssl.enabled=true
83
+ - xpack.security.transport.ssl.key=certs/es01/es01.key
84
+ - xpack.security.transport.ssl.certificate=certs/es01/es01.crt
85
+ - xpack.security.transport.ssl.certificate_authorities=certs/ca/ca.crt
86
+ - xpack.security.transport.ssl.verification_mode=certificate
87
+ - xpack.license.self_generated.type=basic
88
+ - cluster.routing.allocation.disk.watermark.low=2gb
89
+ - cluster.routing.allocation.disk.watermark.high=1gb
90
+ - cluster.routing.allocation.disk.watermark.flood_stage=512mb
91
+ mem_limit: 1073741824
92
+ ulimits:
93
+ memlock:
94
+ soft: -1
95
+ hard: -1
96
+ healthcheck:
97
+ test:
98
+ [
99
+ "CMD-SHELL",
100
+ "curl -s --cacert config/certs/ca/ca.crt https://localhost:9200 | grep -q 'missing authentication credentials'",
101
+ ]
102
+ interval: 10s
103
+ timeout: 10s
104
+ retries: 120
105
+
106
+ es02:
107
+ depends_on:
108
+ - es01
109
+ image: docker.elastic.co/elasticsearch/elasticsearch:8.6.1
110
+ volumes:
111
+ - certs:/usr/share/elasticsearch/config/certs
112
+ - esdata02:/usr/share/elasticsearch/data
113
+ environment:
114
+ - node.name=es02
115
+ - cluster.name=es-mcp-cluster
116
+ - cluster.initial_master_nodes=es01,es02,es03
117
+ - discovery.seed_hosts=es01,es03
118
+ - bootstrap.memory_lock=true
119
+ - xpack.security.enabled=true
120
+ - xpack.security.http.ssl.enabled=true
121
+ - xpack.security.http.ssl.key=certs/es02/es02.key
122
+ - xpack.security.http.ssl.certificate=certs/es02/es02.crt
123
+ - xpack.security.http.ssl.certificate_authorities=certs/ca/ca.crt
124
+ - xpack.security.transport.ssl.enabled=true
125
+ - xpack.security.transport.ssl.key=certs/es02/es02.key
126
+ - xpack.security.transport.ssl.certificate=certs/es02/es02.crt
127
+ - xpack.security.transport.ssl.certificate_authorities=certs/ca/ca.crt
128
+ - xpack.security.transport.ssl.verification_mode=certificate
129
+ - xpack.license.self_generated.type=basic
130
+ - cluster.routing.allocation.disk.watermark.low=2gb
131
+ - cluster.routing.allocation.disk.watermark.high=1gb
132
+ - cluster.routing.allocation.disk.watermark.flood_stage=512mb
133
+ mem_limit: 1073741824
134
+ ulimits:
135
+ memlock:
136
+ soft: -1
137
+ hard: -1
138
+ healthcheck:
139
+ test:
140
+ [
141
+ "CMD-SHELL",
142
+ "curl -s --cacert config/certs/ca/ca.crt https://localhost:9200 | grep -q 'missing authentication credentials'",
143
+ ]
144
+ interval: 10s
145
+ timeout: 10s
146
+ retries: 120
147
+
148
+ es03:
149
+ depends_on:
150
+ - es02
151
+ image: docker.elastic.co/elasticsearch/elasticsearch:8.6.1
152
+ volumes:
153
+ - certs:/usr/share/elasticsearch/config/certs
154
+ - esdata03:/usr/share/elasticsearch/data
155
+ environment:
156
+ - node.name=es03
157
+ - cluster.name=es-mcp-cluster
158
+ - cluster.initial_master_nodes=es01,es02,es03
159
+ - discovery.seed_hosts=es01,es02
160
+ - bootstrap.memory_lock=true
161
+ - xpack.security.enabled=true
162
+ - xpack.security.http.ssl.enabled=true
163
+ - xpack.security.http.ssl.key=certs/es03/es03.key
164
+ - xpack.security.http.ssl.certificate=certs/es03/es03.crt
165
+ - xpack.security.http.ssl.certificate_authorities=certs/ca/ca.crt
166
+ - xpack.security.transport.ssl.enabled=true
167
+ - xpack.security.transport.ssl.key=certs/es03/es03.key
168
+ - xpack.security.transport.ssl.certificate=certs/es03/es03.crt
169
+ - xpack.security.transport.ssl.certificate_authorities=certs/ca/ca.crt
170
+ - xpack.security.transport.ssl.verification_mode=certificate
171
+ - xpack.license.self_generated.type=basic
172
+ - cluster.routing.allocation.disk.watermark.low=2gb
173
+ - cluster.routing.allocation.disk.watermark.high=1gb
174
+ - cluster.routing.allocation.disk.watermark.flood_stage=512mb
175
+ mem_limit: 1073741824
176
+ ulimits:
177
+ memlock:
178
+ soft: -1
179
+ hard: -1
180
+ healthcheck:
181
+ test:
182
+ [
183
+ "CMD-SHELL",
184
+ "curl -s --cacert config/certs/ca/ca.crt https://localhost:9200 | grep -q 'missing authentication credentials'",
185
+ ]
186
+ interval: 10s
187
+ timeout: 10s
188
+ retries: 120
189
+
190
+ kibana:
191
+ depends_on:
192
+ es01:
193
+ condition: service_healthy
194
+ es02:
195
+ condition: service_healthy
196
+ es03:
197
+ condition: service_healthy
198
+ image: docker.elastic.co/kibana/kibana:8.6.1
199
+ volumes:
200
+ - certs:/usr/share/kibana/config/certs
201
+ - kibanadata:/usr/share/kibana/data
202
+ ports:
203
+ - 5601:5601
204
+ environment:
205
+ - SERVERNAME=kibana
206
+ - ELASTICSEARCH_HOSTS=https://es01:9200
207
+ - ELASTICSEARCH_USERNAME=kibana_system
208
+ - ELASTICSEARCH_PASSWORD=kibana123
209
+ - ELASTICSEARCH_SSL_CERTIFICATEAUTHORITIES=config/certs/ca/ca.crt
210
+ mem_limit: 1073741824
211
+ healthcheck:
212
+ test:
213
+ [
214
+ "CMD-SHELL",
215
+ "curl -s -I http://localhost:5601 | grep -q 'HTTP/1.1 302 Found'",
216
+ ]
217
+ interval: 10s
218
+ timeout: 10s
219
+ retries: 120
220
+
221
+ volumes:
222
+ certs:
223
+ driver: local
224
+ esdata01:
225
+ driver: local
226
+ esdata02:
227
+ driver: local
228
+ esdata03:
229
+ driver: local
230
+ kibanadata:
231
+ driver: local
@@ -1,7 +1,7 @@
1
1
  [project]
2
2
  name = "elasticsearch-mcp-server"
3
- version = "0.1.0"
4
- description = "Add your description here"
3
+ version = "0.1.2"
4
+ description = "MCP Server for interacting with Elasticsearch"
5
5
  license = { file = "LICENSE" }
6
6
  readme = "README.md"
7
7
  requires-python = ">=3.10"
@@ -12,5 +12,9 @@ dependencies = [
12
12
  "fastmcp>=0.4.0",
13
13
  ]
14
14
 
15
- [tool.setuptools]
16
- license-files = []
15
+ [build-system]
16
+ requires = ["hatchling"]
17
+ build-backend = "hatchling.build"
18
+
19
+ [project.scripts]
20
+ elasticsearch-mcp-server = "elasticsearch_mcp_server:main"
@@ -0,0 +1,5 @@
1
+ from .tools.index import IndexTools
2
+ from .tools.document import DocumentTools
3
+ from .tools.cluster import ClusterTools
4
+
5
+ __all__ = ['IndexTools', 'DocumentTools', 'ClusterTools']
@@ -2,8 +2,9 @@ import logging
2
2
  import os
3
3
  from dotenv import load_dotenv
4
4
  from elasticsearch import Elasticsearch
5
+ import warnings
5
6
 
6
- class BaseTools:
7
+ class ElasticsearchClient:
7
8
  def __init__(self, logger: logging.Logger):
8
9
  self.logger = logger
9
10
  self.es_client = self._create_elasticsearch_client()
@@ -28,6 +29,10 @@ class BaseTools:
28
29
  def _create_elasticsearch_client(self) -> Elasticsearch:
29
30
  """Create and return an Elasticsearch client using configuration from environment."""
30
31
  config = self._get_es_config()
32
+
33
+ # Disable SSL warnings
34
+ warnings.filterwarnings("ignore", message=".*TLS with verify_certs=False is insecure.*",)
35
+
31
36
  return Elasticsearch(
32
37
  config["host"],
33
38
  basic_auth=(config["username"], config["password"]),
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env python3
2
2
  import logging
3
3
  from fastmcp import FastMCP
4
- from tools import IndexTools, DocumentTools, ClusterTools
4
+ from elasticsearch_mcp_server import IndexTools, DocumentTools, ClusterTools
5
5
 
6
6
  class ElasticsearchMCPServer:
7
7
  def __init__(self):
@@ -1,8 +1,9 @@
1
- from typing import Any
1
+ import logging
2
+ from typing import Dict, Any
3
+ from ..es_client import ElasticsearchClient
2
4
  from mcp.types import TextContent
3
- from .base import BaseTools
4
5
 
5
- class ClusterTools(BaseTools):
6
+ class ClusterTools(ElasticsearchClient):
6
7
  def register_tools(self, mcp: Any):
7
8
  """Register cluster-related tools."""
8
9
 
@@ -1,8 +1,9 @@
1
- from typing import Any
1
+ import logging
2
+ from typing import Dict, Any
3
+ from ..es_client import ElasticsearchClient
2
4
  from mcp.types import TextContent
3
- from .base import BaseTools
4
5
 
5
- class DocumentTools(BaseTools):
6
+ class DocumentTools(ElasticsearchClient):
6
7
  def register_tools(self, mcp: Any):
7
8
  """Register document-related tools."""
8
9
 
@@ -1,8 +1,9 @@
1
- from typing import Any
1
+ import logging
2
+ from typing import Dict, Any
3
+ from ..es_client import ElasticsearchClient
2
4
  from mcp.types import TextContent
3
- from .base import BaseTools
4
5
 
5
- class IndexTools(BaseTools):
6
+ class IndexTools(ElasticsearchClient):
6
7
  def register_tools(self, mcp: Any):
7
8
  """Register index-related tools."""
8
9
 
@@ -0,0 +1,445 @@
1
+ version = 1
2
+ requires-python = ">=3.10"
3
+
4
+ [[package]]
5
+ name = "annotated-types"
6
+ version = "0.7.0"
7
+ source = { registry = "https://pypi.org/simple" }
8
+ sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081 }
9
+ wheels = [
10
+ { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643 },
11
+ ]
12
+
13
+ [[package]]
14
+ name = "anyio"
15
+ version = "4.8.0"
16
+ source = { registry = "https://pypi.org/simple" }
17
+ dependencies = [
18
+ { name = "exceptiongroup", marker = "python_full_version < '3.11'" },
19
+ { name = "idna" },
20
+ { name = "sniffio" },
21
+ { name = "typing-extensions", marker = "python_full_version < '3.13'" },
22
+ ]
23
+ sdist = { url = "https://files.pythonhosted.org/packages/a3/73/199a98fc2dae33535d6b8e8e6ec01f8c1d76c9adb096c6b7d64823038cde/anyio-4.8.0.tar.gz", hash = "sha256:1d9fe889df5212298c0c0723fa20479d1b94883a2df44bd3897aa91083316f7a", size = 181126 }
24
+ wheels = [
25
+ { url = "https://files.pythonhosted.org/packages/46/eb/e7f063ad1fec6b3178a3cd82d1a3c4de82cccf283fc42746168188e1cdd5/anyio-4.8.0-py3-none-any.whl", hash = "sha256:b5011f270ab5eb0abf13385f851315585cc37ef330dd88e27ec3d34d651fd47a", size = 96041 },
26
+ ]
27
+
28
+ [[package]]
29
+ name = "certifi"
30
+ version = "2024.12.14"
31
+ source = { registry = "https://pypi.org/simple" }
32
+ sdist = { url = "https://files.pythonhosted.org/packages/0f/bd/1d41ee578ce09523c81a15426705dd20969f5abf006d1afe8aeff0dd776a/certifi-2024.12.14.tar.gz", hash = "sha256:b650d30f370c2b724812bee08008be0c4163b163ddaec3f2546c1caf65f191db", size = 166010 }
33
+ wheels = [
34
+ { url = "https://files.pythonhosted.org/packages/a5/32/8f6669fc4798494966bf446c8c4a162e0b5d893dff088afddf76414f70e1/certifi-2024.12.14-py3-none-any.whl", hash = "sha256:1275f7a45be9464efc1173084eaa30f866fe2e47d389406136d332ed4967ec56", size = 164927 },
35
+ ]
36
+
37
+ [[package]]
38
+ name = "click"
39
+ version = "8.1.8"
40
+ source = { registry = "https://pypi.org/simple" }
41
+ dependencies = [
42
+ { name = "colorama", marker = "sys_platform == 'win32'" },
43
+ ]
44
+ sdist = { url = "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a", size = 226593 }
45
+ wheels = [
46
+ { url = "https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2", size = 98188 },
47
+ ]
48
+
49
+ [[package]]
50
+ name = "colorama"
51
+ version = "0.4.6"
52
+ source = { registry = "https://pypi.org/simple" }
53
+ sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 }
54
+ wheels = [
55
+ { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 },
56
+ ]
57
+
58
+ [[package]]
59
+ name = "elastic-transport"
60
+ version = "8.17.0"
61
+ source = { registry = "https://pypi.org/simple" }
62
+ dependencies = [
63
+ { name = "certifi" },
64
+ { name = "urllib3" },
65
+ ]
66
+ sdist = { url = "https://files.pythonhosted.org/packages/d7/82/2a544ac3d9c4ae19acc7f53117251bee20dd65dc3dff01fe55ea45ae9bd9/elastic_transport-8.17.0.tar.gz", hash = "sha256:e755f38f99fa6ec5456e236b8e58f0eb18873ac8fe710f74b91a16dd562de2a5", size = 73304 }
67
+ wheels = [
68
+ { url = "https://files.pythonhosted.org/packages/2a/0d/2dd25c06078070973164b661e0d79868e434998391f9aed74d4070aab270/elastic_transport-8.17.0-py3-none-any.whl", hash = "sha256:59f553300866750e67a38828fede000576562a0e66930c641adb75249e0c95af", size = 64523 },
69
+ ]
70
+
71
+ [[package]]
72
+ name = "elasticsearch"
73
+ version = "8.17.0"
74
+ source = { registry = "https://pypi.org/simple" }
75
+ dependencies = [
76
+ { name = "elastic-transport" },
77
+ ]
78
+ sdist = { url = "https://files.pythonhosted.org/packages/38/57/f61579940df4771971aede5b355f64c758f56d8cc9bd4407d669c2f0dd2f/elasticsearch-8.17.0.tar.gz", hash = "sha256:c1069bf2204ba8fab29ff00b2ce6b37324b2cc6ff593283b97df43426ec13053", size = 460268 }
79
+ wheels = [
80
+ { url = "https://files.pythonhosted.org/packages/1e/82/832ff4bdb53429af0025f5032c8b4f3ba18915e08ce16fc55aa09e900e26/elasticsearch-8.17.0-py3-none-any.whl", hash = "sha256:15965240fe297279f0e68b260936d9ced9606aa7ef8910b9b56727f96ef00d5b", size = 571182 },
81
+ ]
82
+
83
+ [[package]]
84
+ name = "elasticsearch-mcp-server"
85
+ version = "0.1.1"
86
+ source = { editable = "." }
87
+ dependencies = [
88
+ { name = "elasticsearch" },
89
+ { name = "fastmcp" },
90
+ { name = "mcp" },
91
+ { name = "python-dotenv" },
92
+ ]
93
+
94
+ [package.metadata]
95
+ requires-dist = [
96
+ { name = "elasticsearch", specifier = ">=8.0.0" },
97
+ { name = "fastmcp", specifier = ">=0.4.0" },
98
+ { name = "mcp", specifier = ">=1.0.0" },
99
+ { name = "python-dotenv", specifier = ">=1.0.0" },
100
+ ]
101
+
102
+ [[package]]
103
+ name = "exceptiongroup"
104
+ version = "1.2.2"
105
+ source = { registry = "https://pypi.org/simple" }
106
+ sdist = { url = "https://files.pythonhosted.org/packages/09/35/2495c4ac46b980e4ca1f6ad6db102322ef3ad2410b79fdde159a4b0f3b92/exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc", size = 28883 }
107
+ wheels = [
108
+ { url = "https://files.pythonhosted.org/packages/02/cc/b7e31358aac6ed1ef2bb790a9746ac2c69bcb3c8588b41616914eb106eaf/exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b", size = 16453 },
109
+ ]
110
+
111
+ [[package]]
112
+ name = "fastmcp"
113
+ version = "0.4.1"
114
+ source = { registry = "https://pypi.org/simple" }
115
+ dependencies = [
116
+ { name = "httpx" },
117
+ { name = "mcp" },
118
+ { name = "pydantic" },
119
+ { name = "pydantic-settings" },
120
+ { name = "python-dotenv" },
121
+ { name = "typer" },
122
+ ]
123
+ sdist = { url = "https://files.pythonhosted.org/packages/6f/84/17b549133263d7ee77141970769bbc401525526bf1af043ea6842bce1a55/fastmcp-0.4.1.tar.gz", hash = "sha256:713ad3b8e4e04841c9e2f3ca022b053adb89a286ceffad0d69ae7b56f31cbe64", size = 785575 }
124
+ wheels = [
125
+ { url = "https://files.pythonhosted.org/packages/79/0b/008a340435fe8f0879e9d608f48af2737ad48440e09bd33b83b3fd03798b/fastmcp-0.4.1-py3-none-any.whl", hash = "sha256:664b42c376fb89ec90a50c9433f5a1f4d24f36696d6c41b024b427ae545f9619", size = 35282 },
126
+ ]
127
+
128
+ [[package]]
129
+ name = "h11"
130
+ version = "0.14.0"
131
+ source = { registry = "https://pypi.org/simple" }
132
+ sdist = { url = "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d", size = 100418 }
133
+ wheels = [
134
+ { url = "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761", size = 58259 },
135
+ ]
136
+
137
+ [[package]]
138
+ name = "httpcore"
139
+ version = "1.0.7"
140
+ source = { registry = "https://pypi.org/simple" }
141
+ dependencies = [
142
+ { name = "certifi" },
143
+ { name = "h11" },
144
+ ]
145
+ sdist = { url = "https://files.pythonhosted.org/packages/6a/41/d7d0a89eb493922c37d343b607bc1b5da7f5be7e383740b4753ad8943e90/httpcore-1.0.7.tar.gz", hash = "sha256:8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c", size = 85196 }
146
+ wheels = [
147
+ { url = "https://files.pythonhosted.org/packages/87/f5/72347bc88306acb359581ac4d52f23c0ef445b57157adedb9aee0cd689d2/httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd", size = 78551 },
148
+ ]
149
+
150
+ [[package]]
151
+ name = "httpx"
152
+ version = "0.28.1"
153
+ source = { registry = "https://pypi.org/simple" }
154
+ dependencies = [
155
+ { name = "anyio" },
156
+ { name = "certifi" },
157
+ { name = "httpcore" },
158
+ { name = "idna" },
159
+ ]
160
+ sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406 }
161
+ wheels = [
162
+ { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517 },
163
+ ]
164
+
165
+ [[package]]
166
+ name = "httpx-sse"
167
+ version = "0.4.0"
168
+ source = { registry = "https://pypi.org/simple" }
169
+ sdist = { url = "https://files.pythonhosted.org/packages/4c/60/8f4281fa9bbf3c8034fd54c0e7412e66edbab6bc74c4996bd616f8d0406e/httpx-sse-0.4.0.tar.gz", hash = "sha256:1e81a3a3070ce322add1d3529ed42eb5f70817f45ed6ec915ab753f961139721", size = 12624 }
170
+ wheels = [
171
+ { url = "https://files.pythonhosted.org/packages/e1/9b/a181f281f65d776426002f330c31849b86b31fc9d848db62e16f03ff739f/httpx_sse-0.4.0-py3-none-any.whl", hash = "sha256:f329af6eae57eaa2bdfd962b42524764af68075ea87370a2de920af5341e318f", size = 7819 },
172
+ ]
173
+
174
+ [[package]]
175
+ name = "idna"
176
+ version = "3.10"
177
+ source = { registry = "https://pypi.org/simple" }
178
+ sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490 }
179
+ wheels = [
180
+ { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442 },
181
+ ]
182
+
183
+ [[package]]
184
+ name = "markdown-it-py"
185
+ version = "3.0.0"
186
+ source = { registry = "https://pypi.org/simple" }
187
+ dependencies = [
188
+ { name = "mdurl" },
189
+ ]
190
+ sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596 }
191
+ wheels = [
192
+ { url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528 },
193
+ ]
194
+
195
+ [[package]]
196
+ name = "mcp"
197
+ version = "1.2.0"
198
+ source = { registry = "https://pypi.org/simple" }
199
+ dependencies = [
200
+ { name = "anyio" },
201
+ { name = "httpx" },
202
+ { name = "httpx-sse" },
203
+ { name = "pydantic" },
204
+ { name = "pydantic-settings" },
205
+ { name = "sse-starlette" },
206
+ { name = "starlette" },
207
+ { name = "uvicorn" },
208
+ ]
209
+ sdist = { url = "https://files.pythonhosted.org/packages/ab/a5/b08dc846ebedae9f17ced878e6975826e90e448cd4592f532f6a88a925a7/mcp-1.2.0.tar.gz", hash = "sha256:2b06c7ece98d6ea9e6379caa38d74b432385c338fb530cb82e2c70ea7add94f5", size = 102973 }
210
+ wheels = [
211
+ { url = "https://files.pythonhosted.org/packages/af/84/fca78f19ac8ce6c53ba416247c71baa53a9e791e98d3c81edbc20a77d6d1/mcp-1.2.0-py3-none-any.whl", hash = "sha256:1d0e77d8c14955a5aea1f5aa1f444c8e531c09355c829b20e42f7a142bc0755f", size = 66468 },
212
+ ]
213
+
214
+ [[package]]
215
+ name = "mdurl"
216
+ version = "0.1.2"
217
+ source = { registry = "https://pypi.org/simple" }
218
+ sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729 }
219
+ wheels = [
220
+ { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979 },
221
+ ]
222
+
223
+ [[package]]
224
+ name = "pydantic"
225
+ version = "2.10.4"
226
+ source = { registry = "https://pypi.org/simple" }
227
+ dependencies = [
228
+ { name = "annotated-types" },
229
+ { name = "pydantic-core" },
230
+ { name = "typing-extensions" },
231
+ ]
232
+ sdist = { url = "https://files.pythonhosted.org/packages/70/7e/fb60e6fee04d0ef8f15e4e01ff187a196fa976eb0f0ab524af4599e5754c/pydantic-2.10.4.tar.gz", hash = "sha256:82f12e9723da6de4fe2ba888b5971157b3be7ad914267dea8f05f82b28254f06", size = 762094 }
233
+ wheels = [
234
+ { url = "https://files.pythonhosted.org/packages/f3/26/3e1bbe954fde7ee22a6e7d31582c642aad9e84ffe4b5fb61e63b87cd326f/pydantic-2.10.4-py3-none-any.whl", hash = "sha256:597e135ea68be3a37552fb524bc7d0d66dcf93d395acd93a00682f1efcb8ee3d", size = 431765 },
235
+ ]
236
+
237
+ [[package]]
238
+ name = "pydantic-core"
239
+ version = "2.27.2"
240
+ source = { registry = "https://pypi.org/simple" }
241
+ dependencies = [
242
+ { name = "typing-extensions" },
243
+ ]
244
+ sdist = { url = "https://files.pythonhosted.org/packages/fc/01/f3e5ac5e7c25833db5eb555f7b7ab24cd6f8c322d3a3ad2d67a952dc0abc/pydantic_core-2.27.2.tar.gz", hash = "sha256:eb026e5a4c1fee05726072337ff51d1efb6f59090b7da90d30ea58625b1ffb39", size = 413443 }
245
+ wheels = [
246
+ { url = "https://files.pythonhosted.org/packages/3a/bc/fed5f74b5d802cf9a03e83f60f18864e90e3aed7223adaca5ffb7a8d8d64/pydantic_core-2.27.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:2d367ca20b2f14095a8f4fa1210f5a7b78b8a20009ecced6b12818f455b1e9fa", size = 1895938 },
247
+ { url = "https://files.pythonhosted.org/packages/71/2a/185aff24ce844e39abb8dd680f4e959f0006944f4a8a0ea372d9f9ae2e53/pydantic_core-2.27.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:491a2b73db93fab69731eaee494f320faa4e093dbed776be1a829c2eb222c34c", size = 1815684 },
248
+ { url = "https://files.pythonhosted.org/packages/c3/43/fafabd3d94d159d4f1ed62e383e264f146a17dd4d48453319fd782e7979e/pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7969e133a6f183be60e9f6f56bfae753585680f3b7307a8e555a948d443cc05a", size = 1829169 },
249
+ { url = "https://files.pythonhosted.org/packages/a2/d1/f2dfe1a2a637ce6800b799aa086d079998959f6f1215eb4497966efd2274/pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3de9961f2a346257caf0aa508a4da705467f53778e9ef6fe744c038119737ef5", size = 1867227 },
250
+ { url = "https://files.pythonhosted.org/packages/7d/39/e06fcbcc1c785daa3160ccf6c1c38fea31f5754b756e34b65f74e99780b5/pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e2bb4d3e5873c37bb3dd58714d4cd0b0e6238cebc4177ac8fe878f8b3aa8e74c", size = 2037695 },
251
+ { url = "https://files.pythonhosted.org/packages/7a/67/61291ee98e07f0650eb756d44998214231f50751ba7e13f4f325d95249ab/pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:280d219beebb0752699480fe8f1dc61ab6615c2046d76b7ab7ee38858de0a4e7", size = 2741662 },
252
+ { url = "https://files.pythonhosted.org/packages/32/90/3b15e31b88ca39e9e626630b4c4a1f5a0dfd09076366f4219429e6786076/pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47956ae78b6422cbd46f772f1746799cbb862de838fd8d1fbd34a82e05b0983a", size = 1993370 },
253
+ { url = "https://files.pythonhosted.org/packages/ff/83/c06d333ee3a67e2e13e07794995c1535565132940715931c1c43bfc85b11/pydantic_core-2.27.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:14d4a5c49d2f009d62a2a7140d3064f686d17a5d1a268bc641954ba181880236", size = 1996813 },
254
+ { url = "https://files.pythonhosted.org/packages/7c/f7/89be1c8deb6e22618a74f0ca0d933fdcb8baa254753b26b25ad3acff8f74/pydantic_core-2.27.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:337b443af21d488716f8d0b6164de833e788aa6bd7e3a39c005febc1284f4962", size = 2005287 },
255
+ { url = "https://files.pythonhosted.org/packages/b7/7d/8eb3e23206c00ef7feee17b83a4ffa0a623eb1a9d382e56e4aa46fd15ff2/pydantic_core-2.27.2-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:03d0f86ea3184a12f41a2d23f7ccb79cdb5a18e06993f8a45baa8dfec746f0e9", size = 2128414 },
256
+ { url = "https://files.pythonhosted.org/packages/4e/99/fe80f3ff8dd71a3ea15763878d464476e6cb0a2db95ff1c5c554133b6b83/pydantic_core-2.27.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7041c36f5680c6e0f08d922aed302e98b3745d97fe1589db0a3eebf6624523af", size = 2155301 },
257
+ { url = "https://files.pythonhosted.org/packages/2b/a3/e50460b9a5789ca1451b70d4f52546fa9e2b420ba3bfa6100105c0559238/pydantic_core-2.27.2-cp310-cp310-win32.whl", hash = "sha256:50a68f3e3819077be2c98110c1f9dcb3817e93f267ba80a2c05bb4f8799e2ff4", size = 1816685 },
258
+ { url = "https://files.pythonhosted.org/packages/57/4c/a8838731cb0f2c2a39d3535376466de6049034d7b239c0202a64aaa05533/pydantic_core-2.27.2-cp310-cp310-win_amd64.whl", hash = "sha256:e0fd26b16394ead34a424eecf8a31a1f5137094cabe84a1bcb10fa6ba39d3d31", size = 1982876 },
259
+ { url = "https://files.pythonhosted.org/packages/c2/89/f3450af9d09d44eea1f2c369f49e8f181d742f28220f88cc4dfaae91ea6e/pydantic_core-2.27.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:8e10c99ef58cfdf2a66fc15d66b16c4a04f62bca39db589ae8cba08bc55331bc", size = 1893421 },
260
+ { url = "https://files.pythonhosted.org/packages/9e/e3/71fe85af2021f3f386da42d291412e5baf6ce7716bd7101ea49c810eda90/pydantic_core-2.27.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:26f32e0adf166a84d0cb63be85c562ca8a6fa8de28e5f0d92250c6b7e9e2aff7", size = 1814998 },
261
+ { url = "https://files.pythonhosted.org/packages/a6/3c/724039e0d848fd69dbf5806894e26479577316c6f0f112bacaf67aa889ac/pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c19d1ea0673cd13cc2f872f6c9ab42acc4e4f492a7ca9d3795ce2b112dd7e15", size = 1826167 },
262
+ { url = "https://files.pythonhosted.org/packages/2b/5b/1b29e8c1fb5f3199a9a57c1452004ff39f494bbe9bdbe9a81e18172e40d3/pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5e68c4446fe0810e959cdff46ab0a41ce2f2c86d227d96dc3847af0ba7def306", size = 1865071 },
263
+ { url = "https://files.pythonhosted.org/packages/89/6c/3985203863d76bb7d7266e36970d7e3b6385148c18a68cc8915fd8c84d57/pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d9640b0059ff4f14d1f37321b94061c6db164fbe49b334b31643e0528d100d99", size = 2036244 },
264
+ { url = "https://files.pythonhosted.org/packages/0e/41/f15316858a246b5d723f7d7f599f79e37493b2e84bfc789e58d88c209f8a/pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:40d02e7d45c9f8af700f3452f329ead92da4c5f4317ca9b896de7ce7199ea459", size = 2737470 },
265
+ { url = "https://files.pythonhosted.org/packages/a8/7c/b860618c25678bbd6d1d99dbdfdf0510ccb50790099b963ff78a124b754f/pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c1fd185014191700554795c99b347d64f2bb637966c4cfc16998a0ca700d048", size = 1992291 },
266
+ { url = "https://files.pythonhosted.org/packages/bf/73/42c3742a391eccbeab39f15213ecda3104ae8682ba3c0c28069fbcb8c10d/pydantic_core-2.27.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d81d2068e1c1228a565af076598f9e7451712700b673de8f502f0334f281387d", size = 1994613 },
267
+ { url = "https://files.pythonhosted.org/packages/94/7a/941e89096d1175d56f59340f3a8ebaf20762fef222c298ea96d36a6328c5/pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:1a4207639fb02ec2dbb76227d7c751a20b1a6b4bc52850568e52260cae64ca3b", size = 2002355 },
268
+ { url = "https://files.pythonhosted.org/packages/6e/95/2359937a73d49e336a5a19848713555605d4d8d6940c3ec6c6c0ca4dcf25/pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:3de3ce3c9ddc8bbd88f6e0e304dea0e66d843ec9de1b0042b0911c1663ffd474", size = 2126661 },
269
+ { url = "https://files.pythonhosted.org/packages/2b/4c/ca02b7bdb6012a1adef21a50625b14f43ed4d11f1fc237f9d7490aa5078c/pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:30c5f68ded0c36466acede341551106821043e9afaad516adfb6e8fa80a4e6a6", size = 2153261 },
270
+ { url = "https://files.pythonhosted.org/packages/72/9d/a241db83f973049a1092a079272ffe2e3e82e98561ef6214ab53fe53b1c7/pydantic_core-2.27.2-cp311-cp311-win32.whl", hash = "sha256:c70c26d2c99f78b125a3459f8afe1aed4d9687c24fd677c6a4436bc042e50d6c", size = 1812361 },
271
+ { url = "https://files.pythonhosted.org/packages/e8/ef/013f07248041b74abd48a385e2110aa3a9bbfef0fbd97d4e6d07d2f5b89a/pydantic_core-2.27.2-cp311-cp311-win_amd64.whl", hash = "sha256:08e125dbdc505fa69ca7d9c499639ab6407cfa909214d500897d02afb816e7cc", size = 1982484 },
272
+ { url = "https://files.pythonhosted.org/packages/10/1c/16b3a3e3398fd29dca77cea0a1d998d6bde3902fa2706985191e2313cc76/pydantic_core-2.27.2-cp311-cp311-win_arm64.whl", hash = "sha256:26f0d68d4b235a2bae0c3fc585c585b4ecc51382db0e3ba402a22cbc440915e4", size = 1867102 },
273
+ { url = "https://files.pythonhosted.org/packages/d6/74/51c8a5482ca447871c93e142d9d4a92ead74de6c8dc5e66733e22c9bba89/pydantic_core-2.27.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:9e0c8cfefa0ef83b4da9588448b6d8d2a2bf1a53c3f1ae5fca39eb3061e2f0b0", size = 1893127 },
274
+ { url = "https://files.pythonhosted.org/packages/d3/f3/c97e80721735868313c58b89d2de85fa80fe8dfeeed84dc51598b92a135e/pydantic_core-2.27.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:83097677b8e3bd7eaa6775720ec8e0405f1575015a463285a92bfdfe254529ef", size = 1811340 },
275
+ { url = "https://files.pythonhosted.org/packages/9e/91/840ec1375e686dbae1bd80a9e46c26a1e0083e1186abc610efa3d9a36180/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:172fce187655fece0c90d90a678424b013f8fbb0ca8b036ac266749c09438cb7", size = 1822900 },
276
+ { url = "https://files.pythonhosted.org/packages/f6/31/4240bc96025035500c18adc149aa6ffdf1a0062a4b525c932065ceb4d868/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:519f29f5213271eeeeb3093f662ba2fd512b91c5f188f3bb7b27bc5973816934", size = 1869177 },
277
+ { url = "https://files.pythonhosted.org/packages/fa/20/02fbaadb7808be578317015c462655c317a77a7c8f0ef274bc016a784c54/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:05e3a55d124407fffba0dd6b0c0cd056d10e983ceb4e5dbd10dda135c31071d6", size = 2038046 },
278
+ { url = "https://files.pythonhosted.org/packages/06/86/7f306b904e6c9eccf0668248b3f272090e49c275bc488a7b88b0823444a4/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9c3ed807c7b91de05e63930188f19e921d1fe90de6b4f5cd43ee7fcc3525cb8c", size = 2685386 },
279
+ { url = "https://files.pythonhosted.org/packages/8d/f0/49129b27c43396581a635d8710dae54a791b17dfc50c70164866bbf865e3/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fb4aadc0b9a0c063206846d603b92030eb6f03069151a625667f982887153e2", size = 1997060 },
280
+ { url = "https://files.pythonhosted.org/packages/0d/0f/943b4af7cd416c477fd40b187036c4f89b416a33d3cc0ab7b82708a667aa/pydantic_core-2.27.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:28ccb213807e037460326424ceb8b5245acb88f32f3d2777427476e1b32c48c4", size = 2004870 },
281
+ { url = "https://files.pythonhosted.org/packages/35/40/aea70b5b1a63911c53a4c8117c0a828d6790483f858041f47bab0b779f44/pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:de3cd1899e2c279b140adde9357c4495ed9d47131b4a4eaff9052f23398076b3", size = 1999822 },
282
+ { url = "https://files.pythonhosted.org/packages/f2/b3/807b94fd337d58effc5498fd1a7a4d9d59af4133e83e32ae39a96fddec9d/pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:220f892729375e2d736b97d0e51466252ad84c51857d4d15f5e9692f9ef12be4", size = 2130364 },
283
+ { url = "https://files.pythonhosted.org/packages/fc/df/791c827cd4ee6efd59248dca9369fb35e80a9484462c33c6649a8d02b565/pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a0fcd29cd6b4e74fe8ddd2c90330fd8edf2e30cb52acda47f06dd615ae72da57", size = 2158303 },
284
+ { url = "https://files.pythonhosted.org/packages/9b/67/4e197c300976af185b7cef4c02203e175fb127e414125916bf1128b639a9/pydantic_core-2.27.2-cp312-cp312-win32.whl", hash = "sha256:1e2cb691ed9834cd6a8be61228471d0a503731abfb42f82458ff27be7b2186fc", size = 1834064 },
285
+ { url = "https://files.pythonhosted.org/packages/1f/ea/cd7209a889163b8dcca139fe32b9687dd05249161a3edda62860430457a5/pydantic_core-2.27.2-cp312-cp312-win_amd64.whl", hash = "sha256:cc3f1a99a4f4f9dd1de4fe0312c114e740b5ddead65bb4102884b384c15d8bc9", size = 1989046 },
286
+ { url = "https://files.pythonhosted.org/packages/bc/49/c54baab2f4658c26ac633d798dab66b4c3a9bbf47cff5284e9c182f4137a/pydantic_core-2.27.2-cp312-cp312-win_arm64.whl", hash = "sha256:3911ac9284cd8a1792d3cb26a2da18f3ca26c6908cc434a18f730dc0db7bfa3b", size = 1885092 },
287
+ { url = "https://files.pythonhosted.org/packages/41/b1/9bc383f48f8002f99104e3acff6cba1231b29ef76cfa45d1506a5cad1f84/pydantic_core-2.27.2-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:7d14bd329640e63852364c306f4d23eb744e0f8193148d4044dd3dacdaacbd8b", size = 1892709 },
288
+ { url = "https://files.pythonhosted.org/packages/10/6c/e62b8657b834f3eb2961b49ec8e301eb99946245e70bf42c8817350cbefc/pydantic_core-2.27.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:82f91663004eb8ed30ff478d77c4d1179b3563df6cdb15c0817cd1cdaf34d154", size = 1811273 },
289
+ { url = "https://files.pythonhosted.org/packages/ba/15/52cfe49c8c986e081b863b102d6b859d9defc63446b642ccbbb3742bf371/pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71b24c7d61131bb83df10cc7e687433609963a944ccf45190cfc21e0887b08c9", size = 1823027 },
290
+ { url = "https://files.pythonhosted.org/packages/b1/1c/b6f402cfc18ec0024120602bdbcebc7bdd5b856528c013bd4d13865ca473/pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fa8e459d4954f608fa26116118bb67f56b93b209c39b008277ace29937453dc9", size = 1868888 },
291
+ { url = "https://files.pythonhosted.org/packages/bd/7b/8cb75b66ac37bc2975a3b7de99f3c6f355fcc4d89820b61dffa8f1e81677/pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce8918cbebc8da707ba805b7fd0b382816858728ae7fe19a942080c24e5b7cd1", size = 2037738 },
292
+ { url = "https://files.pythonhosted.org/packages/c8/f1/786d8fe78970a06f61df22cba58e365ce304bf9b9f46cc71c8c424e0c334/pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eda3f5c2a021bbc5d976107bb302e0131351c2ba54343f8a496dc8783d3d3a6a", size = 2685138 },
293
+ { url = "https://files.pythonhosted.org/packages/a6/74/d12b2cd841d8724dc8ffb13fc5cef86566a53ed358103150209ecd5d1999/pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bd8086fa684c4775c27f03f062cbb9eaa6e17f064307e86b21b9e0abc9c0f02e", size = 1997025 },
294
+ { url = "https://files.pythonhosted.org/packages/a0/6e/940bcd631bc4d9a06c9539b51f070b66e8f370ed0933f392db6ff350d873/pydantic_core-2.27.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8d9b3388db186ba0c099a6d20f0604a44eabdeef1777ddd94786cdae158729e4", size = 2004633 },
295
+ { url = "https://files.pythonhosted.org/packages/50/cc/a46b34f1708d82498c227d5d80ce615b2dd502ddcfd8376fc14a36655af1/pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:7a66efda2387de898c8f38c0cf7f14fca0b51a8ef0b24bfea5849f1b3c95af27", size = 1999404 },
296
+ { url = "https://files.pythonhosted.org/packages/ca/2d/c365cfa930ed23bc58c41463bae347d1005537dc8db79e998af8ba28d35e/pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:18a101c168e4e092ab40dbc2503bdc0f62010e95d292b27827871dc85450d7ee", size = 2130130 },
297
+ { url = "https://files.pythonhosted.org/packages/f4/d7/eb64d015c350b7cdb371145b54d96c919d4db516817f31cd1c650cae3b21/pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ba5dd002f88b78a4215ed2f8ddbdf85e8513382820ba15ad5ad8955ce0ca19a1", size = 2157946 },
298
+ { url = "https://files.pythonhosted.org/packages/a4/99/bddde3ddde76c03b65dfd5a66ab436c4e58ffc42927d4ff1198ffbf96f5f/pydantic_core-2.27.2-cp313-cp313-win32.whl", hash = "sha256:1ebaf1d0481914d004a573394f4be3a7616334be70261007e47c2a6fe7e50130", size = 1834387 },
299
+ { url = "https://files.pythonhosted.org/packages/71/47/82b5e846e01b26ac6f1893d3c5f9f3a2eb6ba79be26eef0b759b4fe72946/pydantic_core-2.27.2-cp313-cp313-win_amd64.whl", hash = "sha256:953101387ecf2f5652883208769a79e48db18c6df442568a0b5ccd8c2723abee", size = 1990453 },
300
+ { url = "https://files.pythonhosted.org/packages/51/b2/b2b50d5ecf21acf870190ae5d093602d95f66c9c31f9d5de6062eb329ad1/pydantic_core-2.27.2-cp313-cp313-win_arm64.whl", hash = "sha256:ac4dbfd1691affb8f48c2c13241a2e3b60ff23247cbcf981759c768b6633cf8b", size = 1885186 },
301
+ { url = "https://files.pythonhosted.org/packages/46/72/af70981a341500419e67d5cb45abe552a7c74b66326ac8877588488da1ac/pydantic_core-2.27.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:2bf14caea37e91198329b828eae1618c068dfb8ef17bb33287a7ad4b61ac314e", size = 1891159 },
302
+ { url = "https://files.pythonhosted.org/packages/ad/3d/c5913cccdef93e0a6a95c2d057d2c2cba347815c845cda79ddd3c0f5e17d/pydantic_core-2.27.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:b0cb791f5b45307caae8810c2023a184c74605ec3bcbb67d13846c28ff731ff8", size = 1768331 },
303
+ { url = "https://files.pythonhosted.org/packages/f6/f0/a3ae8fbee269e4934f14e2e0e00928f9346c5943174f2811193113e58252/pydantic_core-2.27.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:688d3fd9fcb71f41c4c015c023d12a79d1c4c0732ec9eb35d96e3388a120dcf3", size = 1822467 },
304
+ { url = "https://files.pythonhosted.org/packages/d7/7a/7bbf241a04e9f9ea24cd5874354a83526d639b02674648af3f350554276c/pydantic_core-2.27.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d591580c34f4d731592f0e9fe40f9cc1b430d297eecc70b962e93c5c668f15f", size = 1979797 },
305
+ { url = "https://files.pythonhosted.org/packages/4f/5f/4784c6107731f89e0005a92ecb8a2efeafdb55eb992b8e9d0a2be5199335/pydantic_core-2.27.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:82f986faf4e644ffc189a7f1aafc86e46ef70372bb153e7001e8afccc6e54133", size = 1987839 },
306
+ { url = "https://files.pythonhosted.org/packages/6d/a7/61246562b651dff00de86a5f01b6e4befb518df314c54dec187a78d81c84/pydantic_core-2.27.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:bec317a27290e2537f922639cafd54990551725fc844249e64c523301d0822fc", size = 1998861 },
307
+ { url = "https://files.pythonhosted.org/packages/86/aa/837821ecf0c022bbb74ca132e117c358321e72e7f9702d1b6a03758545e2/pydantic_core-2.27.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:0296abcb83a797db256b773f45773da397da75a08f5fcaef41f2044adec05f50", size = 2116582 },
308
+ { url = "https://files.pythonhosted.org/packages/81/b0/5e74656e95623cbaa0a6278d16cf15e10a51f6002e3ec126541e95c29ea3/pydantic_core-2.27.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:0d75070718e369e452075a6017fbf187f788e17ed67a3abd47fa934d001863d9", size = 2151985 },
309
+ { url = "https://files.pythonhosted.org/packages/63/37/3e32eeb2a451fddaa3898e2163746b0cffbbdbb4740d38372db0490d67f3/pydantic_core-2.27.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:7e17b560be3c98a8e3aa66ce828bdebb9e9ac6ad5466fba92eb74c4c95cb1151", size = 2004715 },
310
+ ]
311
+
312
+ [[package]]
313
+ name = "pydantic-settings"
314
+ version = "2.7.1"
315
+ source = { registry = "https://pypi.org/simple" }
316
+ dependencies = [
317
+ { name = "pydantic" },
318
+ { name = "python-dotenv" },
319
+ ]
320
+ sdist = { url = "https://files.pythonhosted.org/packages/73/7b/c58a586cd7d9ac66d2ee4ba60ca2d241fa837c02bca9bea80a9a8c3d22a9/pydantic_settings-2.7.1.tar.gz", hash = "sha256:10c9caad35e64bfb3c2fbf70a078c0e25cc92499782e5200747f942a065dec93", size = 79920 }
321
+ wheels = [
322
+ { url = "https://files.pythonhosted.org/packages/b4/46/93416fdae86d40879714f72956ac14df9c7b76f7d41a4d68aa9f71a0028b/pydantic_settings-2.7.1-py3-none-any.whl", hash = "sha256:590be9e6e24d06db33a4262829edef682500ef008565a969c73d39d5f8bfb3fd", size = 29718 },
323
+ ]
324
+
325
+ [[package]]
326
+ name = "pygments"
327
+ version = "2.19.1"
328
+ source = { registry = "https://pypi.org/simple" }
329
+ sdist = { url = "https://files.pythonhosted.org/packages/7c/2d/c3338d48ea6cc0feb8446d8e6937e1408088a72a39937982cc6111d17f84/pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f", size = 4968581 }
330
+ wheels = [
331
+ { url = "https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c", size = 1225293 },
332
+ ]
333
+
334
+ [[package]]
335
+ name = "python-dotenv"
336
+ version = "1.0.1"
337
+ source = { registry = "https://pypi.org/simple" }
338
+ sdist = { url = "https://files.pythonhosted.org/packages/bc/57/e84d88dfe0aec03b7a2d4327012c1627ab5f03652216c63d49846d7a6c58/python-dotenv-1.0.1.tar.gz", hash = "sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca", size = 39115 }
339
+ wheels = [
340
+ { url = "https://files.pythonhosted.org/packages/6a/3e/b68c118422ec867fa7ab88444e1274aa40681c606d59ac27de5a5588f082/python_dotenv-1.0.1-py3-none-any.whl", hash = "sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a", size = 19863 },
341
+ ]
342
+
343
+ [[package]]
344
+ name = "rich"
345
+ version = "13.9.4"
346
+ source = { registry = "https://pypi.org/simple" }
347
+ dependencies = [
348
+ { name = "markdown-it-py" },
349
+ { name = "pygments" },
350
+ { name = "typing-extensions", marker = "python_full_version < '3.11'" },
351
+ ]
352
+ sdist = { url = "https://files.pythonhosted.org/packages/ab/3a/0316b28d0761c6734d6bc14e770d85506c986c85ffb239e688eeaab2c2bc/rich-13.9.4.tar.gz", hash = "sha256:439594978a49a09530cff7ebc4b5c7103ef57baf48d5ea3184f21d9a2befa098", size = 223149 }
353
+ wheels = [
354
+ { url = "https://files.pythonhosted.org/packages/19/71/39c7c0d87f8d4e6c020a393182060eaefeeae6c01dab6a84ec346f2567df/rich-13.9.4-py3-none-any.whl", hash = "sha256:6049d5e6ec054bf2779ab3358186963bac2ea89175919d699e378b99738c2a90", size = 242424 },
355
+ ]
356
+
357
+ [[package]]
358
+ name = "shellingham"
359
+ version = "1.5.4"
360
+ source = { registry = "https://pypi.org/simple" }
361
+ sdist = { url = "https://files.pythonhosted.org/packages/58/15/8b3609fd3830ef7b27b655beb4b4e9c62313a4e8da8c676e142cc210d58e/shellingham-1.5.4.tar.gz", hash = "sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de", size = 10310 }
362
+ wheels = [
363
+ { url = "https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686", size = 9755 },
364
+ ]
365
+
366
+ [[package]]
367
+ name = "sniffio"
368
+ version = "1.3.1"
369
+ source = { registry = "https://pypi.org/simple" }
370
+ sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372 }
371
+ wheels = [
372
+ { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235 },
373
+ ]
374
+
375
+ [[package]]
376
+ name = "sse-starlette"
377
+ version = "2.2.1"
378
+ source = { registry = "https://pypi.org/simple" }
379
+ dependencies = [
380
+ { name = "anyio" },
381
+ { name = "starlette" },
382
+ ]
383
+ sdist = { url = "https://files.pythonhosted.org/packages/71/a4/80d2a11af59fe75b48230846989e93979c892d3a20016b42bb44edb9e398/sse_starlette-2.2.1.tar.gz", hash = "sha256:54470d5f19274aeed6b2d473430b08b4b379ea851d953b11d7f1c4a2c118b419", size = 17376 }
384
+ wheels = [
385
+ { url = "https://files.pythonhosted.org/packages/d9/e0/5b8bd393f27f4a62461c5cf2479c75a2cc2ffa330976f9f00f5f6e4f50eb/sse_starlette-2.2.1-py3-none-any.whl", hash = "sha256:6410a3d3ba0c89e7675d4c273a301d64649c03a5ef1ca101f10b47f895fd0e99", size = 10120 },
386
+ ]
387
+
388
+ [[package]]
389
+ name = "starlette"
390
+ version = "0.45.2"
391
+ source = { registry = "https://pypi.org/simple" }
392
+ dependencies = [
393
+ { name = "anyio" },
394
+ ]
395
+ sdist = { url = "https://files.pythonhosted.org/packages/90/4f/e1c9f4ec3dae67a94c9285ed275355d5f7cf0f3a5c34538c8ae5412af550/starlette-0.45.2.tar.gz", hash = "sha256:bba1831d15ae5212b22feab2f218bab6ed3cd0fc2dc1d4442443bb1ee52260e0", size = 2574026 }
396
+ wheels = [
397
+ { url = "https://files.pythonhosted.org/packages/aa/ab/fe4f57c83620b39dfc9e7687ebad59129ff05170b99422105019d9a65eec/starlette-0.45.2-py3-none-any.whl", hash = "sha256:4daec3356fb0cb1e723a5235e5beaf375d2259af27532958e2d79df549dad9da", size = 71505 },
398
+ ]
399
+
400
+ [[package]]
401
+ name = "typer"
402
+ version = "0.15.1"
403
+ source = { registry = "https://pypi.org/simple" }
404
+ dependencies = [
405
+ { name = "click" },
406
+ { name = "rich" },
407
+ { name = "shellingham" },
408
+ { name = "typing-extensions" },
409
+ ]
410
+ sdist = { url = "https://files.pythonhosted.org/packages/cb/ce/dca7b219718afd37a0068f4f2530a727c2b74a8b6e8e0c0080a4c0de4fcd/typer-0.15.1.tar.gz", hash = "sha256:a0588c0a7fa68a1978a069818657778f86abe6ff5ea6abf472f940a08bfe4f0a", size = 99789 }
411
+ wheels = [
412
+ { url = "https://files.pythonhosted.org/packages/d0/cc/0a838ba5ca64dc832aa43f727bd586309846b0ffb2ce52422543e6075e8a/typer-0.15.1-py3-none-any.whl", hash = "sha256:7994fb7b8155b64d3402518560648446072864beefd44aa2dc36972a5972e847", size = 44908 },
413
+ ]
414
+
415
+ [[package]]
416
+ name = "typing-extensions"
417
+ version = "4.12.2"
418
+ source = { registry = "https://pypi.org/simple" }
419
+ sdist = { url = "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8", size = 85321 }
420
+ wheels = [
421
+ { url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438 },
422
+ ]
423
+
424
+ [[package]]
425
+ name = "urllib3"
426
+ version = "2.3.0"
427
+ source = { registry = "https://pypi.org/simple" }
428
+ sdist = { url = "https://files.pythonhosted.org/packages/aa/63/e53da845320b757bf29ef6a9062f5c669fe997973f966045cb019c3f4b66/urllib3-2.3.0.tar.gz", hash = "sha256:f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d", size = 307268 }
429
+ wheels = [
430
+ { url = "https://files.pythonhosted.org/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl", hash = "sha256:1cee9ad369867bfdbbb48b7dd50374c0967a0bb7710050facf0dd6911440e3df", size = 128369 },
431
+ ]
432
+
433
+ [[package]]
434
+ name = "uvicorn"
435
+ version = "0.34.0"
436
+ source = { registry = "https://pypi.org/simple" }
437
+ dependencies = [
438
+ { name = "click" },
439
+ { name = "h11" },
440
+ { name = "typing-extensions", marker = "python_full_version < '3.11'" },
441
+ ]
442
+ sdist = { url = "https://files.pythonhosted.org/packages/4b/4d/938bd85e5bf2edeec766267a5015ad969730bb91e31b44021dfe8b22df6c/uvicorn-0.34.0.tar.gz", hash = "sha256:404051050cd7e905de2c9a7e61790943440b3416f49cb409f965d9dcd0fa73e9", size = 76568 }
443
+ wheels = [
444
+ { url = "https://files.pythonhosted.org/packages/61/14/33a3a1352cfa71812a3a21e8c9bfb83f60b0011f5e36f2b1399d51928209/uvicorn-0.34.0-py3-none-any.whl", hash = "sha256:023dc038422502fa28a09c7a30bf2b6991512da7dcdb8fd35fe57cfc154126f4", size = 62315 },
445
+ ]
@@ -1,4 +0,0 @@
1
- [egg_info]
2
- tag_build =
3
- tag_date = 0
4
-
@@ -1,292 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: elasticsearch-mcp-server
3
- Version: 0.1.0
4
- Summary: Add your description here
5
- License: Apache License
6
- Version 2.0, January 2004
7
- http://www.apache.org/licenses/
8
-
9
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
10
-
11
- 1. Definitions.
12
-
13
- "License" shall mean the terms and conditions for use, reproduction,
14
- and distribution as defined by Sections 1 through 9 of this document.
15
-
16
- "Licensor" shall mean the copyright owner or entity authorized by
17
- the copyright owner that is granting the License.
18
-
19
- "Legal Entity" shall mean the union of the acting entity and all
20
- other entities that control, are controlled by, or are under common
21
- control with that entity. For the purposes of this definition,
22
- "control" means (i) the power, direct or indirect, to cause the
23
- direction or management of such entity, whether by contract or
24
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
25
- outstanding shares, or (iii) beneficial ownership of such entity.
26
-
27
- "You" (or "Your") shall mean an individual or Legal Entity
28
- exercising permissions granted by this License.
29
-
30
- "Source" form shall mean the preferred form for making modifications,
31
- including but not limited to software source code, documentation
32
- source, and configuration files.
33
-
34
- "Object" form shall mean any form resulting from mechanical
35
- transformation or translation of a Source form, including but
36
- not limited to compiled object code, generated documentation,
37
- and conversions to other media types.
38
-
39
- "Work" shall mean the work of authorship, whether in Source or
40
- Object form, made available under the License, as indicated by a
41
- copyright notice that is included in or attached to the work
42
- (an example is provided in the Appendix below).
43
-
44
- "Derivative Works" shall mean any work, whether in Source or Object
45
- form, that is based on (or derived from) the Work and for which the
46
- editorial revisions, annotations, elaborations, or other modifications
47
- represent, as a whole, an original work of authorship. For the purposes
48
- of this License, Derivative Works shall not include works that remain
49
- separable from, or merely link (or bind by name) to the interfaces of,
50
- the Work and Derivative Works thereof.
51
-
52
- "Contribution" shall mean any work of authorship, including
53
- the original version of the Work and any modifications or additions
54
- to that Work or Derivative Works thereof, that is intentionally
55
- submitted to Licensor for inclusion in the Work by the copyright owner
56
- or by an individual or Legal Entity authorized to submit on behalf of
57
- the copyright owner. For the purposes of this definition, "submitted"
58
- means any form of electronic, verbal, or written communication sent
59
- to the Licensor or its representatives, including but not limited to
60
- communication on electronic mailing lists, source code control systems,
61
- and issue tracking systems that are managed by, or on behalf of, the
62
- Licensor for the purpose of discussing and improving the Work, but
63
- excluding communication that is conspicuously marked or otherwise
64
- designated in writing by the copyright owner as "Not a Contribution."
65
-
66
- "Contributor" shall mean Licensor and any individual or Legal Entity
67
- on behalf of whom a Contribution has been received by Licensor and
68
- subsequently incorporated within the Work.
69
-
70
- 2. Grant of Copyright License. Subject to the terms and conditions of
71
- this License, each Contributor hereby grants to You a perpetual,
72
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
73
- copyright license to reproduce, prepare Derivative Works of,
74
- publicly display, publicly perform, sublicense, and distribute the
75
- Work and such Derivative Works in Source or Object form.
76
-
77
- 3. Grant of Patent License. Subject to the terms and conditions of
78
- this License, each Contributor hereby grants to You a perpetual,
79
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
80
- (except as stated in this section) patent license to make, have made,
81
- use, offer to sell, sell, import, and otherwise transfer the Work,
82
- where such license applies only to those patent claims licensable
83
- by such Contributor that are necessarily infringed by their
84
- Contribution(s) alone or by combination of their Contribution(s)
85
- with the Work to which such Contribution(s) was submitted. If You
86
- institute patent litigation against any entity (including a
87
- cross-claim or counterclaim in a lawsuit) alleging that the Work
88
- or a Contribution incorporated within the Work constitutes direct
89
- or contributory patent infringement, then any patent licenses
90
- granted to You under this License for that Work shall terminate
91
- as of the date such litigation is filed.
92
-
93
- 4. Redistribution. You may reproduce and distribute copies of the
94
- Work or Derivative Works thereof in any medium, with or without
95
- modifications, and in Source or Object form, provided that You
96
- meet the following conditions:
97
-
98
- (a) You must give any other recipients of the Work or
99
- Derivative Works a copy of this License; and
100
-
101
- (b) You must cause any modified files to carry prominent notices
102
- stating that You changed the files; and
103
-
104
- (c) You must retain, in the Source form of any Derivative Works
105
- that You distribute, all copyright, patent, trademark, and
106
- attribution notices from the Source form of the Work,
107
- excluding those notices that do not pertain to any part of
108
- the Derivative Works; and
109
-
110
- (d) If the Work includes a "NOTICE" text file as part of its
111
- distribution, then any Derivative Works that You distribute must
112
- include a readable copy of the attribution notices contained
113
- within such NOTICE file, excluding those notices that do not
114
- pertain to any part of the Derivative Works, in at least one
115
- of the following places: within a NOTICE text file distributed
116
- as part of the Derivative Works; within the Source form or
117
- documentation, if provided along with the Derivative Works; or,
118
- within a display generated by the Derivative Works, if and
119
- wherever such third-party notices normally appear. The contents
120
- of the NOTICE file are for informational purposes only and
121
- do not modify the License. You may add Your own attribution
122
- notices within Derivative Works that You distribute, alongside
123
- or as an addendum to the NOTICE text from the Work, provided
124
- that such additional attribution notices cannot be construed
125
- as modifying the License.
126
-
127
- You may add Your own copyright statement to Your modifications and
128
- may provide additional or different license terms and conditions
129
- for use, reproduction, or distribution of Your modifications, or
130
- for any such Derivative Works as a whole, provided Your use,
131
- reproduction, and distribution of the Work otherwise complies with
132
- the conditions stated in this License.
133
-
134
- 5. Submission of Contributions. Unless You explicitly state otherwise,
135
- any Contribution intentionally submitted for inclusion in the Work
136
- by You to the Licensor shall be under the terms and conditions of
137
- this License, without any additional terms or conditions.
138
- Notwithstanding the above, nothing herein shall supersede or modify
139
- the terms of any separate license agreement you may have executed
140
- with Licensor regarding such Contributions.
141
-
142
- 6. Trademarks. This License does not grant permission to use the trade
143
- names, trademarks, service marks, or product names of the Licensor,
144
- except as required for reasonable and customary use in describing the
145
- origin of the Work and reproducing the content of the NOTICE file.
146
-
147
- 7. Disclaimer of Warranty. Unless required by applicable law or
148
- agreed to in writing, Licensor provides the Work (and each
149
- Contributor provides its Contributions) on an "AS IS" BASIS,
150
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
151
- implied, including, without limitation, any warranties or conditions
152
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
153
- PARTICULAR PURPOSE. You are solely responsible for determining the
154
- appropriateness of using or redistributing the Work and assume any
155
- risks associated with Your exercise of permissions under this License.
156
-
157
- 8. Limitation of Liability. In no event and under no legal theory,
158
- whether in tort (including negligence), contract, or otherwise,
159
- unless required by applicable law (such as deliberate and grossly
160
- negligent acts) or agreed to in writing, shall any Contributor be
161
- liable to You for damages, including any direct, indirect, special,
162
- incidental, or consequential damages of any character arising as a
163
- result of this License or out of the use or inability to use the
164
- Work (including but not limited to damages for loss of goodwill,
165
- work stoppage, computer failure or malfunction, or any and all
166
- other commercial damages or losses), even if such Contributor
167
- has been advised of the possibility of such damages.
168
-
169
- 9. Accepting Warranty or Additional Liability. While redistributing
170
- the Work or Derivative Works thereof, You may choose to offer,
171
- and charge a fee for, acceptance of support, warranty, indemnity,
172
- or other liability obligations and/or rights consistent with this
173
- License. However, in accepting such obligations, You may act only
174
- on Your own behalf and on Your sole responsibility, not on behalf
175
- of any other Contributor, and only if You agree to indemnify,
176
- defend, and hold each Contributor harmless for any liability
177
- incurred by, or claims asserted against, such Contributor by reason
178
- of your accepting any such warranty or additional liability.
179
-
180
- END OF TERMS AND CONDITIONS
181
-
182
- APPENDIX: How to apply the Apache License to your work.
183
-
184
- To apply the Apache License to your work, attach the following
185
- boilerplate notice, with the fields enclosed by brackets "[]"
186
- replaced with your own identifying information. (Don't include
187
- the brackets!) The text should be enclosed in the appropriate
188
- comment syntax for the file format. We also recommend that a
189
- file or class name and description of purpose be included on the
190
- same "printed page" as the copyright notice for easier
191
- identification within third-party archives.
192
-
193
- Copyright [2025] [cr7258]
194
-
195
- Licensed under the Apache License, Version 2.0 (the "License");
196
- you may not use this file except in compliance with the License.
197
- You may obtain a copy of the License at
198
-
199
- http://www.apache.org/licenses/LICENSE-2.0
200
-
201
- Unless required by applicable law or agreed to in writing, software
202
- distributed under the License is distributed on an "AS IS" BASIS,
203
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
204
- See the License for the specific language governing permissions and
205
- limitations under the License.
206
- Requires-Python: >=3.10
207
- Description-Content-Type: text/markdown
208
- Requires-Dist: elasticsearch>=8.0.0
209
- Requires-Dist: mcp>=1.0.0
210
- Requires-Dist: python-dotenv>=1.0.0
211
- Requires-Dist: fastmcp>=0.4.0
212
-
213
- # Elasticsearch MCP Server
214
-
215
- ## Overview
216
-
217
- A Model Context Protocol (MCP) server implementation that provides Elasticsearch interaction. This server enables searching documents, analyzing indices, and managing cluster through a set of tools.
218
-
219
- <a href="https://glama.ai/mcp/servers/b3po3delex"><img width="380" height="200" src="https://glama.ai/mcp/servers/b3po3delex/badge" alt="Elasticsearch MCP Server" /></a>
220
-
221
- ## Demo
222
-
223
- https://github.com/user-attachments/assets/f7409e31-fac4-4321-9c94-b0ff2ea7ff15
224
-
225
- ## Features
226
-
227
- ### Index Operations
228
-
229
- - `list_indices`: List all indices in the Elasticsearch cluster.
230
- - `get_mapping`: Retrieve the mapping configuration for a specific index.
231
- - `get_settings`: Get the settings configuration for a specific index.
232
-
233
- ### Document Operations
234
-
235
- - `search_documents`: Search documents in an index using Elasticsearch Query DSL.
236
-
237
- ### Cluster Operations
238
-
239
- - `get_cluster_health`: Get health status of the cluster.
240
- - `get_cluster_stats`: Get statistical information about the cluster.
241
-
242
-
243
- ## Start Elasticsearch Cluster
244
-
245
- Start the Elasticsearch cluster using Docker Compose:
246
-
247
- ```bash
248
- docker-compose up -d
249
- ```
250
-
251
- This will start a 3-node Elasticsearch cluster and Kibana. Default Elasticsearch username `elastic`, password `test123`.
252
-
253
- You can access Kibana from http://localhost:5601.
254
-
255
- ## Usage with Claude Desktop
256
-
257
- 1. Add the following configuration to Claude Desktop's config file `claude_desktop_config.json`:
258
-
259
- ```json
260
- {
261
- "mcpServers": {
262
- "elasticsearch": {
263
- "command": "uv",
264
- "args": [
265
- "--directory",
266
- "path/to/elasticsearch_mcp_server/src",
267
- "run",
268
- "server.py"
269
- ],
270
- "env": {
271
- "ELASTIC_HOST": "<your_elastic_url>",
272
- "ELASTIC_USERNAME": "<your_elastic_username>",
273
- "ELASTIC_PASSWORD": "<your_elastic_password>>"
274
- }
275
- }
276
- }
277
- }
278
- ```
279
-
280
- - On macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
281
- - On Windows: `%APPDATA%/Claude/claude_desktop_config.json`
282
-
283
- 3. Restart Claude Desktop to load the new MCP server.
284
-
285
- Now you can interact with your Elasticsearch cluster through Claude using natural language commands like:
286
- - "List all indices in the cluster"
287
- - "How old is the student Bob?"
288
- - "Show me the cluster health status"
289
-
290
- ## License
291
-
292
- This project is licensed under the Apache License Version 2.0 - see the [LICENSE](LICENSE) file for details.
@@ -1,14 +0,0 @@
1
- LICENSE
2
- README.md
3
- pyproject.toml
4
- src/server.py
5
- src/elasticsearch_mcp_server.egg-info/PKG-INFO
6
- src/elasticsearch_mcp_server.egg-info/SOURCES.txt
7
- src/elasticsearch_mcp_server.egg-info/dependency_links.txt
8
- src/elasticsearch_mcp_server.egg-info/requires.txt
9
- src/elasticsearch_mcp_server.egg-info/top_level.txt
10
- src/tools/__init__.py
11
- src/tools/base.py
12
- src/tools/cluster.py
13
- src/tools/document.py
14
- src/tools/index.py
@@ -1,4 +0,0 @@
1
- elasticsearch>=8.0.0
2
- mcp>=1.0.0
3
- python-dotenv>=1.0.0
4
- fastmcp>=0.4.0
@@ -1,5 +0,0 @@
1
- from .index import IndexTools
2
- from .document import DocumentTools
3
- from .cluster import ClusterTools
4
-
5
- __all__ = ['IndexTools', 'DocumentTools', 'ClusterTools']