opensearch-mcp-server 2.0.11__tar.gz → 2.0.13__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.
- opensearch_mcp_server-2.0.13/.github/workflows/publish-mcp.yml +27 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/.github/workflows/pypi-publish.yaml +1 -1
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/.gitignore +3 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/CONTRIBUTING.md +1 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/Makefile +5 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/PKG-INFO +5 -1
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/README.md +4 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/pyproject.toml +1 -1
- opensearch_mcp_server-2.0.13/server.json +61 -0
- opensearch_mcp_server-2.0.13/src/version.py +1 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/uv.lock +1 -1
- opensearch_mcp_server-2.0.11/src/version.py +0 -1
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/.env.example +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/.github/workflows/release.yml +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/.python-version +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/LICENSE +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/cliff.toml +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/docker-compose-elasticsearch.yml +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/docker-compose-opensearch.yml +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/python-sdk-anthropic/.gitignore +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/python-sdk-anthropic/__init__.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/python-sdk-anthropic/client.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/python-sdk-anthropic/config.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/README.md +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/build.gradle +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/gradle/wrapper/gradle-wrapper.jar +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/gradle/wrapper/gradle-wrapper.properties +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/gradle.properties +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/gradlew +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/gradlew.bat +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/settings.gradle +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/src/main/java/spring/ai/mcp/spring_ai_mcp/Application.java +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/src/main/resources/application.yml +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/src/main/resources/mcp-servers-config.json +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/src/test/java/spring/ai/mcp/spring_ai_mcp/SpringAiMcpApplicationTests.java +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/__init__.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/clients/__init__.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/clients/base.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/clients/common/__init__.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/clients/common/alias.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/clients/common/client.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/clients/common/cluster.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/clients/common/document.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/clients/common/general.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/clients/common/index.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/clients/exceptions.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/server.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/tools/__init__.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/tools/alias.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/tools/cluster.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/tools/document.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/tools/general.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/tools/index.py +0 -0
- {opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/tools/register.py +0 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
name: Publish Python MCP Server
|
2
|
+
|
3
|
+
on:
|
4
|
+
workflow_run:
|
5
|
+
workflows: ["PyPI Publish"]
|
6
|
+
types:
|
7
|
+
- completed
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
publish:
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
permissions:
|
13
|
+
id-token: write
|
14
|
+
contents: read
|
15
|
+
|
16
|
+
steps:
|
17
|
+
- uses: actions/checkout@v4
|
18
|
+
- name: Install MCP Publisher
|
19
|
+
run: |
|
20
|
+
git clone https://github.com/modelcontextprotocol/registry publisher-repo
|
21
|
+
cd publisher-repo && make publisher && cd ..
|
22
|
+
cp publisher-repo/cmd/publisher/bin/mcp-publisher mcp-publisher
|
23
|
+
|
24
|
+
- name: Publish to MCP Registry
|
25
|
+
run: |
|
26
|
+
./mcp-publisher login github-oidc
|
27
|
+
./mcp-publisher publish
|
@@ -11,6 +11,11 @@ release:
|
|
11
11
|
data["project"]["version"] = "$(version:v%=%)"; \
|
12
12
|
tomli_w.dump(data, open("pyproject.toml", "wb"))'
|
13
13
|
@python -c 'open("src/version.py", "w").write("__version__ = \"$(version:v%=%)\"\n")'
|
14
|
+
@python -c 'import json; \
|
15
|
+
data = json.load(open("server.json", "r")); \
|
16
|
+
data["version"] = "$(version:v%=%)"; \
|
17
|
+
data["packages"][0]["version"] = "$(version:v%=%)"; \
|
18
|
+
json.dump(data, open("server.json", "w"), indent=2)'
|
14
19
|
@uv sync
|
15
20
|
@git add .
|
16
21
|
@git commit -m "release: update version to $(version:v%=%)"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: opensearch-mcp-server
|
3
|
-
Version: 2.0.
|
3
|
+
Version: 2.0.13
|
4
4
|
Summary: MCP Server for interacting with Elasticsearch and OpenSearch
|
5
5
|
License: Apache License
|
6
6
|
Version 2.0, January 2004
|
@@ -216,12 +216,16 @@ Requires-Dist: tomli==2.2.1
|
|
216
216
|
Description-Content-Type: text/markdown
|
217
217
|
|
218
218
|
|
219
|
+
<!-- mcp-name: io.github.cr7258/elasticsearch-mcp-server -->
|
220
|
+
|
219
221
|
# Elasticsearch/OpenSearch MCP Server
|
220
222
|
|
221
223
|
[](https://mseep.ai/app/cr7258-elasticsearch-mcp-server)
|
222
224
|
|
223
225
|
[](https://archestra.ai/mcp-catalog/cr7258__elasticsearch-mcp-server)
|
224
226
|
|
227
|
+
[MCP Official Registry]( https://registry.modelcontextprotocol.io/v0/servers?search=io.github.cr7258/elasticsearch-mcp-server)
|
228
|
+
|
225
229
|
## Overview
|
226
230
|
|
227
231
|
A Model Context Protocol (MCP) server implementation that provides Elasticsearch and OpenSearch interaction. This server enables searching documents, analyzing indices, and managing cluster through a set of tools.
|
@@ -1,10 +1,14 @@
|
|
1
1
|
|
2
|
+
<!-- mcp-name: io.github.cr7258/elasticsearch-mcp-server -->
|
3
|
+
|
2
4
|
# Elasticsearch/OpenSearch MCP Server
|
3
5
|
|
4
6
|
[](https://mseep.ai/app/cr7258-elasticsearch-mcp-server)
|
5
7
|
|
6
8
|
[](https://archestra.ai/mcp-catalog/cr7258__elasticsearch-mcp-server)
|
7
9
|
|
10
|
+
[MCP Official Registry]( https://registry.modelcontextprotocol.io/v0/servers?search=io.github.cr7258/elasticsearch-mcp-server)
|
11
|
+
|
8
12
|
## Overview
|
9
13
|
|
10
14
|
A Model Context Protocol (MCP) server implementation that provides Elasticsearch and OpenSearch interaction. This server enables searching documents, analyzing indices, and managing cluster through a set of tools.
|
@@ -0,0 +1,61 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
|
3
|
+
"name": "io.github.cr7258/elasticsearch-mcp-server",
|
4
|
+
"description": "MCP server for interacting with Elasticsearch",
|
5
|
+
"status": "active",
|
6
|
+
"repository": {
|
7
|
+
"url": "https://github.com/cr7258/elasticsearch-mcp-server",
|
8
|
+
"source": "github"
|
9
|
+
},
|
10
|
+
"version": "2.0.13",
|
11
|
+
"packages": [
|
12
|
+
{
|
13
|
+
"registry_type": "pypi",
|
14
|
+
"registry_base_url": "https://pypi.org",
|
15
|
+
"identifier": "elasticsearch-mcp-server",
|
16
|
+
"version": "2.0.13",
|
17
|
+
"transport": {
|
18
|
+
"type": "stdio"
|
19
|
+
},
|
20
|
+
"environment_variables": [
|
21
|
+
{
|
22
|
+
"name": "ELASTICSEARCH_HOSTS",
|
23
|
+
"description": "Comma-separated list of Elasticsearch hosts (e.g., https://localhost:9200)",
|
24
|
+
"is_required": false,
|
25
|
+
"format": "string",
|
26
|
+
"is_secret": false,
|
27
|
+
"default": "https://localhost:9200"
|
28
|
+
},
|
29
|
+
{
|
30
|
+
"name": "ELASTICSEARCH_API_KEY",
|
31
|
+
"description": "API key for Elasticsearch or Elastic Cloud authentication (recommended)",
|
32
|
+
"is_required": false,
|
33
|
+
"format": "string",
|
34
|
+
"is_secret": true
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"name": "ELASTICSEARCH_USERNAME",
|
38
|
+
"description": "Username for basic authentication (alternative to API key)",
|
39
|
+
"is_required": false,
|
40
|
+
"format": "string",
|
41
|
+
"is_secret": false
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"name": "ELASTICSEARCH_PASSWORD",
|
45
|
+
"description": "Password for basic authentication (used with ELASTICSEARCH_USERNAME)",
|
46
|
+
"is_required": false,
|
47
|
+
"format": "string",
|
48
|
+
"is_secret": true
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"name": "ELASTICSEARCH_VERIFY_CERTS",
|
52
|
+
"description": "Whether to verify SSL certificates (true/false)",
|
53
|
+
"is_required": false,
|
54
|
+
"format": "boolean",
|
55
|
+
"is_secret": false,
|
56
|
+
"default": "false"
|
57
|
+
}
|
58
|
+
]
|
59
|
+
}
|
60
|
+
]
|
61
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "2.0.13"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "2.0.11"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/docker-compose-elasticsearch.yml
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/README.md
RENAMED
File without changes
|
{opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/build.gradle
RENAMED
File without changes
|
File without changes
|
File without changes
|
{opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/gradle.properties
RENAMED
File without changes
|
File without changes
|
{opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/gradlew.bat
RENAMED
File without changes
|
{opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/mcp_client/spring-ai/settings.gradle
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/clients/common/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{opensearch_mcp_server-2.0.11 → opensearch_mcp_server-2.0.13}/src/clients/common/document.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|