opensearch-mcp-server 2.0.6__py3-none-any.whl → 2.0.8__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.
- {opensearch_mcp_server-2.0.6.dist-info → opensearch_mcp_server-2.0.8.dist-info}/METADATA +35 -1
- {opensearch_mcp_server-2.0.6.dist-info → opensearch_mcp_server-2.0.8.dist-info}/RECORD +6 -6
- src/version.py +1 -1
- {opensearch_mcp_server-2.0.6.dist-info → opensearch_mcp_server-2.0.8.dist-info}/WHEEL +0 -0
- {opensearch_mcp_server-2.0.6.dist-info → opensearch_mcp_server-2.0.8.dist-info}/entry_points.txt +0 -0
- {opensearch_mcp_server-2.0.6.dist-info → opensearch_mcp_server-2.0.8.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: opensearch-mcp-server
|
3
|
-
Version: 2.0.
|
3
|
+
Version: 2.0.8
|
4
4
|
Summary: MCP Server for interacting with Elasticsearch and OpenSearch
|
5
5
|
License: Apache License
|
6
6
|
Version 2.0, January 2004
|
@@ -375,6 +375,23 @@ Using `uv` requires cloning the repository locally and specifying the path to th
|
|
375
375
|
|
376
376
|
## SSE
|
377
377
|
|
378
|
+
### Option 1: Using uvx
|
379
|
+
|
380
|
+
```bash
|
381
|
+
# export environment variables
|
382
|
+
export ELASTICSEARCH_HOSTS="https://localhost:9200"
|
383
|
+
export ELASTICSEARCH_USERNAME="elastic"
|
384
|
+
export ELASTICSEARCH_PASSWORD="test123"
|
385
|
+
|
386
|
+
# By default, the SSE MCP server will serve on http://127.0.0.1:8000/sse
|
387
|
+
uvx elasticsearch-mcp-server --transport sse
|
388
|
+
|
389
|
+
# The host, port, and path can be specified using the --host, --port, and --path options
|
390
|
+
uvx elasticsearch-mcp-server --transport sse --host 0.0.0.0 --port 8000 --path /sse
|
391
|
+
```
|
392
|
+
|
393
|
+
### Option 2: Using uv
|
394
|
+
|
378
395
|
```bash
|
379
396
|
# By default, the SSE MCP server will serve on http://127.0.0.1:8000/sse
|
380
397
|
uv run src/server.py elasticsearch-mcp-server --transport sse
|
@@ -385,6 +402,23 @@ uv run src/server.py elasticsearch-mcp-server --transport sse --host 0.0.0.0 --p
|
|
385
402
|
|
386
403
|
## Streamable HTTP
|
387
404
|
|
405
|
+
### Option 1: Using uvx
|
406
|
+
|
407
|
+
```bash
|
408
|
+
# export environment variables
|
409
|
+
export ELASTICSEARCH_HOSTS="https://localhost:9200"
|
410
|
+
export ELASTICSEARCH_USERNAME="elastic"
|
411
|
+
export ELASTICSEARCH_PASSWORD="test123"
|
412
|
+
|
413
|
+
# By default, the Streamable HTTP MCP server will serve on http://127.0.0.1:8000/mcp
|
414
|
+
uvx elasticsearch-mcp-server --transport streamable-http
|
415
|
+
|
416
|
+
# The host, port, and path can be specified using the --host, --port, and --path options
|
417
|
+
uvx elasticsearch-mcp-server --transport streamable-http --host 0.0.0.0 --port 8000 --path /mcp
|
418
|
+
```
|
419
|
+
|
420
|
+
### Option 2: Using uv
|
421
|
+
|
388
422
|
```bash
|
389
423
|
# By default, the Streamable HTTP MCP server will serve on http://127.0.0.1:8000/mcp
|
390
424
|
uv run src/server.py elasticsearch-mcp-server --transport streamable-http
|
@@ -1,6 +1,6 @@
|
|
1
1
|
src/__init__.py,sha256=aNKcThftSLh9IjOTA-UUpoRzIm4R0WwXKGAzykwecmU,211
|
2
2
|
src/server.py,sha256=BfMAgXTFV9C4waCWRro8Sfl6yXEXr2vJ7YoGY7HhMPY,5072
|
3
|
-
src/version.py,sha256=
|
3
|
+
src/version.py,sha256=oVbl6ILP5dyBZtm2iUzM_QTUhSy3C325aGgDThF7P_4,22
|
4
4
|
src/clients/__init__.py,sha256=3UezAt9422S-7BvMiCo2Y9pmATVutorwsIQXP_g_CkA,1221
|
5
5
|
src/clients/base.py,sha256=MBAGepXyHPtdbtHhxFB8CamZ2ApWCBuOi_6-ey-MqX8,3298
|
6
6
|
src/clients/exceptions.py,sha256=NYF3KVw-9aAgCViin5OuBI6miMEPS5QsdHx6bcis1wc,2493
|
@@ -18,8 +18,8 @@ src/tools/document.py,sha256=XZTVuk4di9VEwWMZN7jyDVnzoOiXkb4FBrXF44sVXTs,2052
|
|
18
18
|
src/tools/general.py,sha256=whj1spjIb8SS75h843X6c3RTsrZcSm-66KVLlY7OEh0,817
|
19
19
|
src/tools/index.py,sha256=7KNPtElTFelkjRSvdMqPBx9nx_9Uk01OnTMeVo7YeCs,1345
|
20
20
|
src/tools/register.py,sha256=wrG2P6-YPW77bTg1j_ELp8omWRYsJjFeOHUy_unHe6Y,1344
|
21
|
-
opensearch_mcp_server-2.0.
|
22
|
-
opensearch_mcp_server-2.0.
|
23
|
-
opensearch_mcp_server-2.0.
|
24
|
-
opensearch_mcp_server-2.0.
|
25
|
-
opensearch_mcp_server-2.0.
|
21
|
+
opensearch_mcp_server-2.0.8.dist-info/METADATA,sha256=WqPk4FQoFJhg_BmCH75KaIRTRm23ORWA19_zxMxEsRg,19863
|
22
|
+
opensearch_mcp_server-2.0.8.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
23
|
+
opensearch_mcp_server-2.0.8.dist-info/entry_points.txt,sha256=ImfJnUwMpQUBmu-1MeBG_P0dwamfXKQh82mBKW7tWNY,138
|
24
|
+
opensearch_mcp_server-2.0.8.dist-info/licenses/LICENSE,sha256=DBsjuP5FR51d9kaUdXlVBuBv3cQ_I_adq9gefYQ9FcY,11339
|
25
|
+
opensearch_mcp_server-2.0.8.dist-info/RECORD,,
|
src/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "2.0.
|
1
|
+
__version__ = "2.0.8"
|
File without changes
|
{opensearch_mcp_server-2.0.6.dist-info → opensearch_mcp_server-2.0.8.dist-info}/entry_points.txt
RENAMED
File without changes
|
{opensearch_mcp_server-2.0.6.dist-info → opensearch_mcp_server-2.0.8.dist-info}/licenses/LICENSE
RENAMED
File without changes
|