elasticsearch-mcp-server 2.0.17__py3-none-any.whl
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.
- elasticsearch_mcp_server-2.0.17.dist-info/METADATA +555 -0
- elasticsearch_mcp_server-2.0.17.dist-info/RECORD +28 -0
- elasticsearch_mcp_server-2.0.17.dist-info/WHEEL +4 -0
- elasticsearch_mcp_server-2.0.17.dist-info/entry_points.txt +3 -0
- elasticsearch_mcp_server-2.0.17.dist-info/licenses/LICENSE +201 -0
- src/__init__.py +6 -0
- src/clients/__init__.py +44 -0
- src/clients/base.py +137 -0
- src/clients/common/__init__.py +6 -0
- src/clients/common/alias.py +20 -0
- src/clients/common/client.py +27 -0
- src/clients/common/cluster.py +12 -0
- src/clients/common/data_stream.py +18 -0
- src/clients/common/document.py +37 -0
- src/clients/common/general.py +10 -0
- src/clients/common/index.py +20 -0
- src/clients/exceptions.py +69 -0
- src/risk_config.py +77 -0
- src/server.py +166 -0
- src/tools/__init__.py +15 -0
- src/tools/alias.py +46 -0
- src/tools/cluster.py +17 -0
- src/tools/data_stream.py +47 -0
- src/tools/document.py +64 -0
- src/tools/general.py +20 -0
- src/tools/index.py +44 -0
- src/tools/register.py +89 -0
- src/version.py +1 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [2025] [cr7258]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
src/__init__.py
ADDED
src/clients/__init__.py
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import os
|
|
2
|
+
|
|
3
|
+
from dotenv import load_dotenv
|
|
4
|
+
|
|
5
|
+
from src.clients.common.client import SearchClient
|
|
6
|
+
from src.clients.exceptions import handle_search_exceptions
|
|
7
|
+
|
|
8
|
+
def create_search_client(engine_type: str) -> SearchClient:
|
|
9
|
+
"""
|
|
10
|
+
Create a search client for the specified engine type.
|
|
11
|
+
|
|
12
|
+
Args:
|
|
13
|
+
engine_type: Type of search engine to use ("elasticsearch" or "opensearch")
|
|
14
|
+
|
|
15
|
+
Returns:
|
|
16
|
+
A search client instance
|
|
17
|
+
"""
|
|
18
|
+
# Load configuration from environment variables
|
|
19
|
+
load_dotenv()
|
|
20
|
+
|
|
21
|
+
# Get configuration from environment variables
|
|
22
|
+
prefix = engine_type.upper()
|
|
23
|
+
hosts_str = os.environ.get(f"{prefix}_HOSTS", "https://localhost:9200")
|
|
24
|
+
hosts = [host.strip() for host in hosts_str.split(",")]
|
|
25
|
+
username = os.environ.get(f"{prefix}_USERNAME")
|
|
26
|
+
password = os.environ.get(f"{prefix}_PASSWORD")
|
|
27
|
+
api_key = os.environ.get(f"{prefix}_API_KEY")
|
|
28
|
+
verify_certs = os.environ.get(f"{prefix}_VERIFY_CERTS", "false").lower() == "true"
|
|
29
|
+
|
|
30
|
+
config = {
|
|
31
|
+
"hosts": hosts,
|
|
32
|
+
"username": username,
|
|
33
|
+
"password": password,
|
|
34
|
+
"api_key": api_key,
|
|
35
|
+
"verify_certs": verify_certs
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
return SearchClient(config, engine_type)
|
|
39
|
+
|
|
40
|
+
__all__ = [
|
|
41
|
+
'create_search_client',
|
|
42
|
+
'handle_search_exceptions',
|
|
43
|
+
'SearchClient',
|
|
44
|
+
]
|
src/clients/base.py
ADDED
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
from abc import ABC
|
|
2
|
+
import logging
|
|
3
|
+
import warnings
|
|
4
|
+
from typing import Dict, Optional
|
|
5
|
+
|
|
6
|
+
from elasticsearch import Elasticsearch
|
|
7
|
+
import httpx
|
|
8
|
+
from opensearchpy import OpenSearch
|
|
9
|
+
|
|
10
|
+
class SearchClientBase(ABC):
|
|
11
|
+
def __init__(self, config: Dict, engine_type: str):
|
|
12
|
+
"""
|
|
13
|
+
Initialize the search client.
|
|
14
|
+
|
|
15
|
+
Args:
|
|
16
|
+
config: Configuration dictionary with connection parameters
|
|
17
|
+
engine_type: Type of search engine to use ("elasticsearch" or "opensearch")
|
|
18
|
+
"""
|
|
19
|
+
self.logger = logging.getLogger()
|
|
20
|
+
self.config = config
|
|
21
|
+
self.engine_type = engine_type
|
|
22
|
+
|
|
23
|
+
# Extract common configuration
|
|
24
|
+
hosts = config.get("hosts")
|
|
25
|
+
username = config.get("username")
|
|
26
|
+
password = config.get("password")
|
|
27
|
+
api_key = config.get("api_key")
|
|
28
|
+
verify_certs = config.get("verify_certs", False)
|
|
29
|
+
|
|
30
|
+
# Disable insecure request warnings if verify_certs is False
|
|
31
|
+
if not verify_certs:
|
|
32
|
+
warnings.filterwarnings("ignore", message=".*verify_certs=False is insecure.*")
|
|
33
|
+
warnings.filterwarnings("ignore", message=".*Unverified HTTPS request is being made to host.*")
|
|
34
|
+
|
|
35
|
+
try:
|
|
36
|
+
import urllib3
|
|
37
|
+
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
|
|
38
|
+
except ImportError:
|
|
39
|
+
pass
|
|
40
|
+
|
|
41
|
+
# Initialize client based on engine type
|
|
42
|
+
if engine_type == "elasticsearch":
|
|
43
|
+
# Get auth parameters based on elasticsearch package version and authentication method
|
|
44
|
+
auth_params = self._get_elasticsearch_auth_params(username, password, api_key)
|
|
45
|
+
|
|
46
|
+
self.client = Elasticsearch(
|
|
47
|
+
hosts=hosts,
|
|
48
|
+
verify_certs=verify_certs,
|
|
49
|
+
**auth_params
|
|
50
|
+
)
|
|
51
|
+
self.logger.info(f"Elasticsearch client initialized with hosts: {hosts}")
|
|
52
|
+
elif engine_type == "opensearch":
|
|
53
|
+
self.client = OpenSearch(
|
|
54
|
+
hosts=hosts,
|
|
55
|
+
http_auth=(username, password) if username and password else None,
|
|
56
|
+
verify_certs=verify_certs
|
|
57
|
+
)
|
|
58
|
+
self.logger.info(f"OpenSearch client initialized with hosts: {hosts}")
|
|
59
|
+
else:
|
|
60
|
+
raise ValueError(f"Unsupported engine type: {engine_type}")
|
|
61
|
+
|
|
62
|
+
# General REST client
|
|
63
|
+
base_url = hosts[0] if isinstance(hosts, list) else hosts
|
|
64
|
+
self.general_client = GeneralRestClient(
|
|
65
|
+
base_url=base_url,
|
|
66
|
+
username=username,
|
|
67
|
+
password=password,
|
|
68
|
+
api_key=api_key,
|
|
69
|
+
verify_certs=verify_certs,
|
|
70
|
+
)
|
|
71
|
+
|
|
72
|
+
def _get_elasticsearch_auth_params(self, username: Optional[str], password: Optional[str], api_key: Optional[str]) -> Dict:
|
|
73
|
+
"""
|
|
74
|
+
Get authentication parameters for Elasticsearch client based on package version.
|
|
75
|
+
|
|
76
|
+
Args:
|
|
77
|
+
username: Username for authentication
|
|
78
|
+
password: Password for authentication
|
|
79
|
+
api_key: API key for authentication
|
|
80
|
+
|
|
81
|
+
Returns:
|
|
82
|
+
Dictionary with appropriate auth parameters for the ES version
|
|
83
|
+
"""
|
|
84
|
+
# API key takes precedence over username/password
|
|
85
|
+
if api_key:
|
|
86
|
+
return {"api_key": api_key}
|
|
87
|
+
|
|
88
|
+
if not username or not password:
|
|
89
|
+
return {}
|
|
90
|
+
|
|
91
|
+
# Check Elasticsearch package version to determine auth parameter name
|
|
92
|
+
try:
|
|
93
|
+
from elasticsearch import __version__ as es_version
|
|
94
|
+
# Convert version tuple to string format
|
|
95
|
+
version_str = '.'.join(map(str, es_version))
|
|
96
|
+
self.logger.info(f"Elasticsearch client version: {version_str}")
|
|
97
|
+
major_version = es_version[0]
|
|
98
|
+
if major_version >= 8:
|
|
99
|
+
# ES 8+ uses basic_auth
|
|
100
|
+
return {"basic_auth": (username, password)}
|
|
101
|
+
else:
|
|
102
|
+
# ES 7 and below use http_auth
|
|
103
|
+
return {"http_auth": (username, password)}
|
|
104
|
+
except Exception as e:
|
|
105
|
+
self.logger.error(f"Failed to detect Elasticsearch version: {e}")
|
|
106
|
+
# If we can't detect version, try basic_auth first (ES 8+ default)
|
|
107
|
+
return {"basic_auth": (username, password)}
|
|
108
|
+
|
|
109
|
+
class GeneralRestClient:
|
|
110
|
+
def __init__(self, base_url: Optional[str], username: Optional[str], password: Optional[str], api_key: Optional[str], verify_certs: bool):
|
|
111
|
+
self.base_url = base_url.rstrip("/") if base_url else ""
|
|
112
|
+
self.auth = (username, password) if username and password else None
|
|
113
|
+
self.api_key = api_key
|
|
114
|
+
self.verify_certs = verify_certs
|
|
115
|
+
|
|
116
|
+
def request(self, method, path, params=None, body=None):
|
|
117
|
+
url = f"{self.base_url}/{path.lstrip('/')}"
|
|
118
|
+
headers = {}
|
|
119
|
+
|
|
120
|
+
# Add API key to Authorization header if provided
|
|
121
|
+
if self.api_key:
|
|
122
|
+
headers["Authorization"] = f"ApiKey {self.api_key}"
|
|
123
|
+
|
|
124
|
+
with httpx.Client(verify=self.verify_certs) as client:
|
|
125
|
+
resp = client.request(
|
|
126
|
+
method=method.upper(),
|
|
127
|
+
url=url,
|
|
128
|
+
params=params,
|
|
129
|
+
json=body,
|
|
130
|
+
auth=self.auth if not self.api_key else None, # Use basic auth only if no API key
|
|
131
|
+
headers=headers
|
|
132
|
+
)
|
|
133
|
+
resp.raise_for_status()
|
|
134
|
+
ct = resp.headers.get("content-type", "")
|
|
135
|
+
if ct.startswith("application/json"):
|
|
136
|
+
return resp.json()
|
|
137
|
+
return resp.text
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from typing import Dict
|
|
2
|
+
|
|
3
|
+
from src.clients.base import SearchClientBase
|
|
4
|
+
|
|
5
|
+
class AliasClient(SearchClientBase):
|
|
6
|
+
def list_aliases(self) -> Dict:
|
|
7
|
+
"""Get all aliases."""
|
|
8
|
+
return self.client.cat.aliases()
|
|
9
|
+
|
|
10
|
+
def get_alias(self, index: str) -> Dict:
|
|
11
|
+
"""Get aliases for the specified index."""
|
|
12
|
+
return self.client.indices.get_alias(index=index)
|
|
13
|
+
|
|
14
|
+
def put_alias(self, index: str, name: str, body: Dict) -> Dict:
|
|
15
|
+
"""Creates or updates an alias."""
|
|
16
|
+
return self.client.indices.put_alias(index=index, name=name, body=body)
|
|
17
|
+
|
|
18
|
+
def delete_alias(self, index: str, name: str) -> Dict:
|
|
19
|
+
"""Delete an alias for the specified index."""
|
|
20
|
+
return self.client.indices.delete_alias(index=index, name=name)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
from typing import Dict
|
|
2
|
+
|
|
3
|
+
from src.clients.common.alias import AliasClient
|
|
4
|
+
from src.clients.common.cluster import ClusterClient
|
|
5
|
+
from src.clients.common.data_stream import DataStreamClient
|
|
6
|
+
from src.clients.common.document import DocumentClient
|
|
7
|
+
from src.clients.common.general import GeneralClient
|
|
8
|
+
from src.clients.common.index import IndexClient
|
|
9
|
+
|
|
10
|
+
class SearchClient(IndexClient, DocumentClient, ClusterClient, AliasClient, DataStreamClient, GeneralClient):
|
|
11
|
+
"""
|
|
12
|
+
Unified search client that combines all search functionality.
|
|
13
|
+
|
|
14
|
+
This class uses multiple inheritance to combine all specialized client implementations
|
|
15
|
+
(index, document, cluster, alias) into a single unified client.
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
def __init__(self, config: Dict, engine_type: str):
|
|
19
|
+
"""
|
|
20
|
+
Initialize the search client.
|
|
21
|
+
|
|
22
|
+
Args:
|
|
23
|
+
config: Configuration dictionary with connection parameters
|
|
24
|
+
engine_type: Type of search engine to use ("elasticsearch" or "opensearch")
|
|
25
|
+
"""
|
|
26
|
+
super().__init__(config, engine_type)
|
|
27
|
+
self.logger.info(f"Initialized the {engine_type} client")
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
from typing import Dict
|
|
2
|
+
|
|
3
|
+
from src.clients.base import SearchClientBase
|
|
4
|
+
|
|
5
|
+
class ClusterClient(SearchClientBase):
|
|
6
|
+
def get_cluster_health(self) -> Dict:
|
|
7
|
+
"""Get cluster health information from OpenSearch."""
|
|
8
|
+
return self.client.cluster.health()
|
|
9
|
+
|
|
10
|
+
def get_cluster_stats(self) -> Dict:
|
|
11
|
+
"""Get cluster statistics from OpenSearch."""
|
|
12
|
+
return self.client.cluster.stats()
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from typing import Dict, Optional
|
|
2
|
+
from src.clients.base import SearchClientBase
|
|
3
|
+
|
|
4
|
+
class DataStreamClient(SearchClientBase):
|
|
5
|
+
def create_data_stream(self, name: str) -> Dict:
|
|
6
|
+
"""Create a new data stream."""
|
|
7
|
+
return self.client.indices.create_data_stream(name=name)
|
|
8
|
+
|
|
9
|
+
def get_data_stream(self, name: Optional[str] = None) -> Dict:
|
|
10
|
+
"""Get information about one or more data streams."""
|
|
11
|
+
if name:
|
|
12
|
+
return self.client.indices.get_data_stream(name=name)
|
|
13
|
+
else:
|
|
14
|
+
return self.client.indices.get_data_stream()
|
|
15
|
+
|
|
16
|
+
def delete_data_stream(self, name: str) -> Dict:
|
|
17
|
+
"""Delete one or more data streams."""
|
|
18
|
+
return self.client.indices.delete_data_stream(name=name)
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
from typing import Dict, Optional
|
|
2
|
+
|
|
3
|
+
from src.clients.base import SearchClientBase
|
|
4
|
+
|
|
5
|
+
class DocumentClient(SearchClientBase):
|
|
6
|
+
def search_documents(self, index: str, body: Dict) -> Dict:
|
|
7
|
+
"""Search for documents in the index."""
|
|
8
|
+
return self.client.search(index=index, body=body)
|
|
9
|
+
|
|
10
|
+
def index_document(self, index: str, document: Dict, id: Optional[str] = None) -> Dict:
|
|
11
|
+
"""Creates a new document in the index."""
|
|
12
|
+
# Handle parameter name differences between Elasticsearch and OpenSearch
|
|
13
|
+
if self.engine_type == "elasticsearch":
|
|
14
|
+
# For Elasticsearch: index(index, document, id=None, ...)
|
|
15
|
+
if id is not None:
|
|
16
|
+
return self.client.index(index=index, document=document, id=id)
|
|
17
|
+
else:
|
|
18
|
+
return self.client.index(index=index, document=document)
|
|
19
|
+
else:
|
|
20
|
+
# For OpenSearch: index(index, body, id=None, ...)
|
|
21
|
+
if id is not None:
|
|
22
|
+
return self.client.index(index=index, body=document, id=id)
|
|
23
|
+
else:
|
|
24
|
+
return self.client.index(index=index, body=document)
|
|
25
|
+
|
|
26
|
+
def get_document(self, index: str, id: str) -> Dict:
|
|
27
|
+
"""Get a document by ID."""
|
|
28
|
+
return self.client.get(index=index, id=id)
|
|
29
|
+
|
|
30
|
+
def delete_document(self, index: str, id: str) -> Dict:
|
|
31
|
+
"""Removes a document from the index."""
|
|
32
|
+
return self.client.delete(index=index, id=id)
|
|
33
|
+
|
|
34
|
+
def delete_by_query(self, index: str, body: Dict) -> Dict:
|
|
35
|
+
"""Deletes documents matching the provided query."""
|
|
36
|
+
return self.client.delete_by_query(index=index, body=body)
|
|
37
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
from typing import Dict, Optional
|
|
2
|
+
|
|
3
|
+
from src.clients.base import SearchClientBase
|
|
4
|
+
|
|
5
|
+
class GeneralClient(SearchClientBase):
|
|
6
|
+
def general_api_request(self, method: str, path: str, params: Optional[Dict] = None, body: Optional[Dict] = None):
|
|
7
|
+
"""Perform a general HTTP API request.
|
|
8
|
+
Use this tool for any Elasticsearch/OpenSearch API that does not have a dedicated tool.
|
|
9
|
+
"""
|
|
10
|
+
return self.general_client.request(method, path, params, body)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from typing import Dict, Optional
|
|
2
|
+
|
|
3
|
+
from src.clients.base import SearchClientBase
|
|
4
|
+
|
|
5
|
+
class IndexClient(SearchClientBase):
|
|
6
|
+
def list_indices(self) -> Dict:
|
|
7
|
+
"""List all indices."""
|
|
8
|
+
return self.client.cat.indices()
|
|
9
|
+
|
|
10
|
+
def get_index(self, index: str) -> Dict:
|
|
11
|
+
"""Returns information (mappings, settings, aliases) about one or more indices."""
|
|
12
|
+
return self.client.indices.get(index=index)
|
|
13
|
+
|
|
14
|
+
def create_index(self, index: str, body: Optional[Dict] = None) -> Dict:
|
|
15
|
+
"""Creates an index with optional settings and mappings."""
|
|
16
|
+
return self.client.indices.create(index=index, body=body)
|
|
17
|
+
|
|
18
|
+
def delete_index(self, index: str) -> Dict:
|
|
19
|
+
"""Delete an index."""
|
|
20
|
+
return self.client.indices.delete(index=index)
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import functools
|
|
2
|
+
import logging
|
|
3
|
+
from typing import TypeVar, Callable
|
|
4
|
+
|
|
5
|
+
from fastmcp import FastMCP
|
|
6
|
+
from mcp.types import TextContent
|
|
7
|
+
|
|
8
|
+
T = TypeVar('T')
|
|
9
|
+
|
|
10
|
+
def handle_search_exceptions(func: Callable[..., T]) -> Callable[..., list[TextContent]]:
|
|
11
|
+
"""
|
|
12
|
+
Decorator to handle exceptions in search client operations.
|
|
13
|
+
|
|
14
|
+
Args:
|
|
15
|
+
func: The function to decorate
|
|
16
|
+
|
|
17
|
+
Returns:
|
|
18
|
+
Decorated function that handles exceptions
|
|
19
|
+
"""
|
|
20
|
+
@functools.wraps(func)
|
|
21
|
+
def wrapper(*args, **kwargs):
|
|
22
|
+
logger = logging.getLogger()
|
|
23
|
+
try:
|
|
24
|
+
return func(*args, **kwargs)
|
|
25
|
+
except Exception as e:
|
|
26
|
+
logger.error(f"Unexpected error in {func.__name__}: {e}")
|
|
27
|
+
return [TextContent(type="text", text=f"Unexpected error in {func.__name__}: {str(e)}")]
|
|
28
|
+
|
|
29
|
+
return wrapper
|
|
30
|
+
|
|
31
|
+
def with_exception_handling(tool_instance: object, mcp: FastMCP) -> None:
|
|
32
|
+
"""
|
|
33
|
+
Register tools from a tool instance with automatic exception handling applied to all tools.
|
|
34
|
+
|
|
35
|
+
This function temporarily replaces mcp.tool with a wrapped version that automatically
|
|
36
|
+
applies the handle_search_exceptions decorator to all registered tool methods.
|
|
37
|
+
|
|
38
|
+
Args:
|
|
39
|
+
tool_instance: The tool instance that has a register_tools method
|
|
40
|
+
mcp: The FastMCP instance used for tool registration
|
|
41
|
+
"""
|
|
42
|
+
# Save the original tool method
|
|
43
|
+
original_tool = mcp.tool
|
|
44
|
+
|
|
45
|
+
@functools.wraps(original_tool)
|
|
46
|
+
def wrapped_tool(*args, **kwargs):
|
|
47
|
+
# Get the original decorator
|
|
48
|
+
decorator = original_tool(*args, **kwargs)
|
|
49
|
+
|
|
50
|
+
# Return a new decorator that applies both the exception handler and original decorator
|
|
51
|
+
def combined_decorator(func):
|
|
52
|
+
# First apply the exception handling decorator
|
|
53
|
+
wrapped_func = handle_search_exceptions(func)
|
|
54
|
+
# Then apply the original mcp.tool decorator
|
|
55
|
+
return decorator(wrapped_func)
|
|
56
|
+
|
|
57
|
+
return combined_decorator
|
|
58
|
+
|
|
59
|
+
try:
|
|
60
|
+
# Temporarily replace mcp.tool with our wrapped version
|
|
61
|
+
mcp.tool = wrapped_tool
|
|
62
|
+
|
|
63
|
+
# Call the registration method on the tool instance
|
|
64
|
+
tool_instance.register_tools(mcp)
|
|
65
|
+
finally:
|
|
66
|
+
# Restore the original mcp.tool to avoid affecting other code that might use mcp.tool
|
|
67
|
+
# This ensures that our modification is isolated to just this tool registration
|
|
68
|
+
# and prevents multiple nested decorators if register_all_tools is called multiple times
|
|
69
|
+
mcp.tool = original_tool
|