elasticsearch-mcp-server 0.0.4__tar.gz → 0.0.5__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 (20) hide show
  1. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/PKG-INFO +1 -1
  2. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/cliff.toml +33 -46
  3. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/pyproject.toml +1 -1
  4. elasticsearch_mcp_server-0.0.4/CHANGELOG.md +0 -32
  5. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/.env +0 -0
  6. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/.github/workflows/pypi-publish.yaml +0 -0
  7. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/.github/workflows/release.yml +0 -0
  8. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/.gitignore +0 -0
  9. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/.python-version +0 -0
  10. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/LICENSE +0 -0
  11. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/Makefile +0 -0
  12. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/README.md +0 -0
  13. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/docker-compose.yml +0 -0
  14. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/src/elasticsearch_mcp_server/__init__.py +0 -0
  15. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/src/elasticsearch_mcp_server/es_client.py +0 -0
  16. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/src/elasticsearch_mcp_server/server.py +0 -0
  17. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/src/elasticsearch_mcp_server/tools/cluster.py +0 -0
  18. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/src/elasticsearch_mcp_server/tools/document.py +0 -0
  19. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/src/elasticsearch_mcp_server/tools/index.py +0 -0
  20. {elasticsearch_mcp_server-0.0.4 → elasticsearch_mcp_server-0.0.5}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: elasticsearch-mcp-server
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Summary: MCP Server for interacting with Elasticsearch
5
5
  License: Apache License
6
6
  Version 2.0, January 2004
@@ -9,68 +9,54 @@ header = """
9
9
  # template for the changelog body
10
10
  # https://keats.github.io/tera/docs/#introduction
11
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
-
12
+ {% if version %}\
13
+ {% if previous.version %}\
14
+ ## [{{ version | trim_start_matches(pat="v") }}]($REPO/compare/{{ previous.version }}..{{ version }}) - {{ timestamp | date(format="%Y-%m-%d") }}
15
+ {% else %}\
16
+ ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
17
+ {% endif %}\
18
+ {% else %}\
19
+ ## [unreleased]
20
+ {% endif %}\
22
21
  {% for group, commits in commits | group_by(attribute="group") %}
23
- ### {{ group | upper_first }}
22
+ ### {{ group | striptags | trim | upper_first }}
23
+ {% for commit in commits
24
+ | filter(attribute="scope")
25
+ | sort(attribute="scope") %}
26
+ - **({{commit.scope}})**{% if commit.breaking %} [**breaking**]{% endif %} \
27
+ {{ commit.message }} - ([{{ commit.id | truncate(length=7, end="") }}]($REPO/commit/{{ commit.id }})) - @{{ commit.author.name }}
28
+ {%- endfor -%}
29
+ {% raw %}\n{% endraw %}\
24
30
  {%- 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
31
+ {%- if commit.scope -%}
32
+ {% else -%}
33
+ - {% if commit.breaking %} [**breaking**]{% endif %}\
34
+ {{ commit.message }} - ([{{ commit.id | truncate(length=7, end="") }}]($REPO/commit/{{ commit.id }})) - @{{ commit.author.name }}
35
+ {% endif -%}
36
+ {% endfor -%}
37
+ {% endfor %}\n
43
38
  """
44
39
  # template for the changelog footer
45
40
  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
41
  <!-- generated by git-cliff -->
61
42
  """
62
43
  # remove the leading and trailing whitespace from the templates
63
44
  trim = true
45
+ # postprocessors
46
+ postprocessors = [
47
+ { pattern = '\$REPO', replace = "https://github.com/cr7258/elasticsearch-mcp-server" }, # replace repository URL
48
+ ]
64
49
 
65
50
  [git]
66
51
  # parse the commits based on https://www.conventionalcommits.org
67
52
  conventional_commits = true
68
53
  # filter out the commits that are not conventional
69
- filter_unconventional = false
54
+ filter_unconventional = true
55
+ # process each line of a commit as an individual commit
56
+ split_commits = false
70
57
  # regex for preprocessing the commit messages
71
58
  commit_preprocessors = [
72
- # remove issue numbers from commits
73
- { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "" },
59
+ # { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/cr7258/elasticsearch-mcp-server/issues/${2}))"}, # replace issue numbers
74
60
  ]
75
61
  # regex for parsing and grouping commits
76
62
  commit_parsers = [
@@ -91,6 +77,7 @@ commit_parsers = [
91
77
  { body = ".*security", group = "<!-- 8 -->🛡️ Security" },
92
78
  { message = "^revert", group = "<!-- 9 -->◀️ Revert" },
93
79
  ]
80
+
94
81
  # filter out the commits that are not matched by commit parsers
95
82
  filter_commits = false
96
83
  # sort the tags topologically
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "elasticsearch-mcp-server"
3
- version = "0.0.4"
3
+ version = "0.0.5"
4
4
  description = "MCP Server for interacting with Elasticsearch"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -1,32 +0,0 @@
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 -->