elasticsearch-mcp-server 0.0.1__tar.gz → 0.0.4__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.
- elasticsearch_mcp_server-0.0.4/CHANGELOG.md +32 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/PKG-INFO +1 -1
- elasticsearch_mcp_server-0.0.4/cliff.toml +99 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/pyproject.toml +1 -1
- elasticsearch_mcp_server-0.0.1/cliff.toml +0 -95
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/.env +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/.github/workflows/pypi-publish.yaml +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/.github/workflows/release.yml +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/.gitignore +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/.python-version +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/LICENSE +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/Makefile +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/README.md +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/docker-compose.yml +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/src/elasticsearch_mcp_server/__init__.py +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/src/elasticsearch_mcp_server/es_client.py +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/src/elasticsearch_mcp_server/server.py +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/src/elasticsearch_mcp_server/tools/cluster.py +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/src/elasticsearch_mcp_server/tools/document.py +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/src/elasticsearch_mcp_server/tools/index.py +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/uv.lock +0 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.0.3] - 2025-01-18
|
|
4
|
+
|
|
5
|
+
### <!-- 0 -->⛰️ Features
|
|
6
|
+
- Uv build and publish by @cr7258
|
|
7
|
+
- Add github action by @cr7258
|
|
8
|
+
- Auto release by @cr7258
|
|
9
|
+
|
|
10
|
+
### <!-- 1 -->🐛 Bug Fixes
|
|
11
|
+
- Query parameter structure incorrectly nested by @cr7258
|
|
12
|
+
- Kibana URL by @cr7258
|
|
13
|
+
- Pypi-publish github action by @cr7258
|
|
14
|
+
- Fix release github action by @cr7258
|
|
15
|
+
- Fix release github action by @cr7258
|
|
16
|
+
|
|
17
|
+
### <!-- 7 -->⚙️ Miscellaneous Tasks
|
|
18
|
+
- Add license and badge by @cr7258
|
|
19
|
+
- Update version to 0.1.6 by @cr7258
|
|
20
|
+
- Update version to 0.1.7 by @cr7258
|
|
21
|
+
- Update version to 0.1.8 by @cr7258
|
|
22
|
+
- Refine cliff
|
|
23
|
+
|
|
24
|
+
### Release
|
|
25
|
+
- Update version to 0.0.1 by @cr7258
|
|
26
|
+
- Update version to 0.0.2 by @cr7258
|
|
27
|
+
- Update version to 0.0.3
|
|
28
|
+
|
|
29
|
+
## New Contributors
|
|
30
|
+
* @cr7258 made their first contribution
|
|
31
|
+
|
|
32
|
+
<!-- generated by git-cliff -->
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
# git-cliff ~ configuration file
|
|
2
|
+
# https://git-cliff.org/docs/configuration
|
|
3
|
+
|
|
4
|
+
[changelog]
|
|
5
|
+
# template for the changelog header
|
|
6
|
+
header = """
|
|
7
|
+
# Changelog\n
|
|
8
|
+
"""
|
|
9
|
+
# template for the changelog body
|
|
10
|
+
# https://keats.github.io/tera/docs/#introduction
|
|
11
|
+
body = """
|
|
12
|
+
{%- macro remote_url() -%}
|
|
13
|
+
https://github.com/{{ remote.github.owner }}/{{ remote.github.repo }}
|
|
14
|
+
{%- endmacro -%}
|
|
15
|
+
|
|
16
|
+
{% if version -%}
|
|
17
|
+
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
|
|
18
|
+
{% else -%}
|
|
19
|
+
## [Unreleased]
|
|
20
|
+
{% endif -%}
|
|
21
|
+
|
|
22
|
+
{% for group, commits in commits | group_by(attribute="group") %}
|
|
23
|
+
### {{ group | upper_first }}
|
|
24
|
+
{%- for commit in commits %}
|
|
25
|
+
- {{ commit.message | split(pat="\n") | first | upper_first | trim }}\
|
|
26
|
+
{% if commit.remote.username %} by @{{ commit.remote.username }}{%- endif -%}
|
|
27
|
+
{% if commit.remote.pr_number %} in \
|
|
28
|
+
[#{{ commit.remote.pr_number }}]({{ self::remote_url() }}/pull/{{ commit.remote.pr_number }}) \
|
|
29
|
+
{%- endif -%}
|
|
30
|
+
{% endfor %}
|
|
31
|
+
{% endfor %}
|
|
32
|
+
|
|
33
|
+
{%- if github.contributors | filter(attribute="is_first_time", value=true) | length != 0 %}
|
|
34
|
+
## New Contributors
|
|
35
|
+
{%- endif -%}
|
|
36
|
+
|
|
37
|
+
{% for contributor in github.contributors | filter(attribute="is_first_time", value=true) %}
|
|
38
|
+
* @{{ contributor.username }} made their first contribution
|
|
39
|
+
{%- if contributor.pr_number %} in \
|
|
40
|
+
[#{{ contributor.pr_number }}]({{ self::remote_url() }}/pull/{{ contributor.pr_number }}) \
|
|
41
|
+
{%- endif %}
|
|
42
|
+
{%- endfor %}\n
|
|
43
|
+
"""
|
|
44
|
+
# template for the changelog footer
|
|
45
|
+
footer = """
|
|
46
|
+
{%- macro remote_url() -%}
|
|
47
|
+
https://github.com/{{ remote.github.owner }}/{{ remote.github.repo }}
|
|
48
|
+
{%- endmacro -%}
|
|
49
|
+
|
|
50
|
+
{% for release in releases -%}
|
|
51
|
+
{% if release.version -%}
|
|
52
|
+
{% if release.previous.version -%}
|
|
53
|
+
[{{ release.version | trim_start_matches(pat="v") }}]: \
|
|
54
|
+
{{ self::remote_url() }}/compare/{{ release.previous.version }}..{{ release.version }}
|
|
55
|
+
{% endif -%}
|
|
56
|
+
{% else -%}
|
|
57
|
+
[unreleased]: {{ self::remote_url() }}/compare/{{ release.previous.version }}..HEAD
|
|
58
|
+
{% endif -%}
|
|
59
|
+
{% endfor %}
|
|
60
|
+
<!-- generated by git-cliff -->
|
|
61
|
+
"""
|
|
62
|
+
# remove the leading and trailing whitespace from the templates
|
|
63
|
+
trim = true
|
|
64
|
+
|
|
65
|
+
[git]
|
|
66
|
+
# parse the commits based on https://www.conventionalcommits.org
|
|
67
|
+
conventional_commits = true
|
|
68
|
+
# filter out the commits that are not conventional
|
|
69
|
+
filter_unconventional = false
|
|
70
|
+
# regex for preprocessing the commit messages
|
|
71
|
+
commit_preprocessors = [
|
|
72
|
+
# remove issue numbers from commits
|
|
73
|
+
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "" },
|
|
74
|
+
]
|
|
75
|
+
# regex for parsing and grouping commits
|
|
76
|
+
commit_parsers = [
|
|
77
|
+
{ message = "^feat", group = "<!-- 0 -->⛰️ Features" },
|
|
78
|
+
{ message = "^fix", group = "<!-- 1 -->🐛 Bug Fixes" },
|
|
79
|
+
{ message = "^doc", group = "<!-- 3 -->📚 Documentation" },
|
|
80
|
+
{ message = "^perf", group = "<!-- 4 -->⚡ Performance" },
|
|
81
|
+
{ message = "^refactor\\(clippy\\)", skip = true },
|
|
82
|
+
{ message = "^refactor", group = "<!-- 2 -->🚜 Refactor" },
|
|
83
|
+
{ message = "^style", group = "<!-- 5 -->🎨 Styling" },
|
|
84
|
+
{ message = "^test", group = "<!-- 6 -->🧪 Testing" },
|
|
85
|
+
{ message = "^chore\\(release\\): prepare for", skip = true },
|
|
86
|
+
{ message = "^chore\\(deps.*\\)", skip = true },
|
|
87
|
+
{ message = "^chore\\(pr\\)", skip = true },
|
|
88
|
+
{ message = "^chore\\(pull\\)", skip = true },
|
|
89
|
+
{ message = "^chore\\(npm\\).*yarn\\.lock", skip = true },
|
|
90
|
+
{ message = "^chore|^ci", group = "<!-- 7 -->⚙️ Miscellaneous Tasks" },
|
|
91
|
+
{ body = ".*security", group = "<!-- 8 -->🛡️ Security" },
|
|
92
|
+
{ message = "^revert", group = "<!-- 9 -->◀️ Revert" },
|
|
93
|
+
]
|
|
94
|
+
# filter out the commits that are not matched by commit parsers
|
|
95
|
+
filter_commits = false
|
|
96
|
+
# sort the tags topologically
|
|
97
|
+
topo_order = false
|
|
98
|
+
# sort the commits inside sections by oldest/newest order
|
|
99
|
+
sort_commits = "oldest"
|
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
# git-cliff ~ configuration file
|
|
2
|
-
# https://git-cliff.org/docs/configuration
|
|
3
|
-
|
|
4
|
-
[changelog]
|
|
5
|
-
# changelog header
|
|
6
|
-
header = """
|
|
7
|
-
# Changelog\n
|
|
8
|
-
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.\n
|
|
9
|
-
"""
|
|
10
|
-
# template for the changelog body
|
|
11
|
-
# https://keats.github.io/tera/docs/#introduction
|
|
12
|
-
body = """
|
|
13
|
-
---
|
|
14
|
-
{% if version %}\
|
|
15
|
-
{% if previous.version %}\
|
|
16
|
-
## [{{ version | trim_start_matches(pat="v") }}]($REPO/compare/{{ previous.version }}..{{ version }}) - {{ timestamp | date(format="%Y-%m-%d") }}
|
|
17
|
-
{% else %}\
|
|
18
|
-
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
|
|
19
|
-
{% endif %}\
|
|
20
|
-
{% else %}\
|
|
21
|
-
## [unreleased]
|
|
22
|
-
{% endif %}\
|
|
23
|
-
{% for group, commits in commits | group_by(attribute="group") %}
|
|
24
|
-
### {{ group | striptags | trim | upper_first }}
|
|
25
|
-
{% for commit in commits
|
|
26
|
-
| filter(attribute="scope")
|
|
27
|
-
| sort(attribute="scope") %}
|
|
28
|
-
- **({{commit.scope}})**{% if commit.breaking %} [**breaking**]{% endif %} \
|
|
29
|
-
{{ commit.message|trim }} - ([{{ commit.id | truncate(length=7, end="") }}]($REPO/commit/{{ commit.id }})) - {{ commit.author.name }}
|
|
30
|
-
{%- endfor -%}
|
|
31
|
-
{% raw %}\n{% endraw %}\
|
|
32
|
-
{%- for commit in commits %}
|
|
33
|
-
{%- if commit.scope -%}
|
|
34
|
-
{% else -%}
|
|
35
|
-
- {% if commit.breaking %} [**breaking**]{% endif %}\
|
|
36
|
-
{{ commit.message|trim }} - ([{{ commit.id | truncate(length=7, end="") }}]($REPO/commit/{{ commit.id }})) - {{ commit.author.name }}
|
|
37
|
-
{% endif -%}
|
|
38
|
-
{% endfor -%}
|
|
39
|
-
{% endfor %}\n
|
|
40
|
-
"""
|
|
41
|
-
# template for the changelog footer
|
|
42
|
-
footer = """
|
|
43
|
-
<!-- generated by git-cliff -->
|
|
44
|
-
"""
|
|
45
|
-
# remove the leading and trailing whitespace from the templates
|
|
46
|
-
trim = true
|
|
47
|
-
# postprocessors
|
|
48
|
-
postprocessors = [
|
|
49
|
-
{ pattern = '\$REPO', replace = "https://github.com/cr7258/elasticsearch-mcp-server" }, # replace repository URL
|
|
50
|
-
]
|
|
51
|
-
|
|
52
|
-
[git]
|
|
53
|
-
# parse the commits based on https://www.conventionalcommits.org
|
|
54
|
-
conventional_commits = true
|
|
55
|
-
# filter out the commits that are not conventional
|
|
56
|
-
filter_unconventional = false
|
|
57
|
-
# process each line of a commit as an individual commit
|
|
58
|
-
split_commits = false
|
|
59
|
-
# regex for preprocessing the commit messages
|
|
60
|
-
commit_preprocessors = [
|
|
61
|
-
# { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/orhun/git-cliff/issues/${2}))"}, # replace issue numbers
|
|
62
|
-
]
|
|
63
|
-
# regex for parsing and grouping commits
|
|
64
|
-
commit_parsers = [
|
|
65
|
-
{ message = "\\[skip", skip = true },
|
|
66
|
-
{ message = "\\p{Han}", skip = true },
|
|
67
|
-
{ message = "^feat", group = "Features" },
|
|
68
|
-
{ message = "^fix", group = "Bug Fixes" },
|
|
69
|
-
{ message = "^doc", group = "Documentation" },
|
|
70
|
-
{ message = "^perf", group = "Performance" },
|
|
71
|
-
{ message = "^refactor", group = "Refactoring" },
|
|
72
|
-
{ message = "^style", group = "Style" },
|
|
73
|
-
{ message = "^revert", group = "Revert" },
|
|
74
|
-
{ message = "^test", group = "Tests" },
|
|
75
|
-
{ message = "^chore\\(version\\):", skip = true },
|
|
76
|
-
{ message = "^chore", group = "Miscellaneous Chores" },
|
|
77
|
-
{ message = ".*", group = "Other" },
|
|
78
|
-
{ body = ".*security", group = "Security" },
|
|
79
|
-
]
|
|
80
|
-
# protect breaking changes from being skipped due to matching a skipping commit_parser
|
|
81
|
-
protect_breaking_commits = false
|
|
82
|
-
# filter out the commits that are not matched by commit parsers
|
|
83
|
-
filter_commits = false
|
|
84
|
-
# regex for matching git tags
|
|
85
|
-
tag_pattern = "v[0-9].*"
|
|
86
|
-
# regex for skipping tags
|
|
87
|
-
skip_tags = "v0.1.0-beta.1"
|
|
88
|
-
# regex for ignoring tags
|
|
89
|
-
ignore_tags = ""
|
|
90
|
-
# sort the tags topologically
|
|
91
|
-
topo_order = false
|
|
92
|
-
# sort the commits inside sections by oldest/newest order
|
|
93
|
-
sort_commits = "oldest"
|
|
94
|
-
# limit the number of commits included in the changelog.
|
|
95
|
-
# limit_commits = 42
|
|
File without changes
|
|
File without changes
|
{elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.4}/.github/workflows/release.yml
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
|
|
File without changes
|
|
File without changes
|