@dpesch/mantisbt-mcp-server 1.5.6 → 1.5.7

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.
@@ -82,3 +82,14 @@ jobs:
82
82
  --arg name "${{ github.ref_name }}" \
83
83
  --rawfile body /tmp/release_notes.md \
84
84
  '{tag_name: $tag, name: $name, body: $body, draft: false, prerelease: false}')"
85
+
86
+ - name: Create GitHub release
87
+ run: |
88
+ curl -s -X POST "https://api.github.com/repos/dpesch/mantisbt-mcp-server/releases" \
89
+ -H "Authorization: Bearer ${{ secrets.GH_RELEASE_TOKEN }}" \
90
+ -H "Content-Type: application/json" \
91
+ -d "$(jq -n \
92
+ --arg tag "${{ github.ref_name }}" \
93
+ --arg name "${{ github.ref_name }}" \
94
+ --rawfile body /tmp/release_notes.md \
95
+ '{tag_name: $tag, name: $name, body: $body, draft: false, prerelease: false}')"
package/CHANGELOG.md CHANGED
@@ -7,6 +7,17 @@ This project adheres to [Semantic Versioning](https://semver.org/).
7
7
 
8
8
  ---
9
9
 
10
+ ## [1.5.7] – 2026-03-18
11
+
12
+ ### Added
13
+ - `glama.json`: Glama MCP directory metadata (maintainer claim)
14
+ - CI: GitHub release step in publish workflow (creates GitHub release alongside Codeberg release on tag push)
15
+
16
+ ### Fixed
17
+ - `server.json`: removed `repository` field — Codeberg URL rejected by MCP Registry validation
18
+
19
+ ---
20
+
10
21
  ## [1.5.6] – 2026-03-18
11
22
 
12
23
  ### Added
package/glama.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "$schema": "https://glama.ai/mcp/schemas/server.json",
3
+ "maintainers": ["dpesch"]
4
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dpesch/mantisbt-mcp-server",
3
- "version": "1.5.6",
3
+ "version": "1.5.7",
4
4
  "mcpName": "io.github.dpesch/mantisbt-mcp-server",
5
5
  "description": "MCP server for MantisBT REST API – read and manage bug tracker issues",
6
6
  "author": "Dominik Pesch",
package/server.json CHANGED
@@ -3,16 +3,12 @@
3
3
  "name": "io.github.dpesch/mantisbt-mcp-server",
4
4
  "title": "MantisBT MCP Server",
5
5
  "description": "MantisBT MCP server – manage issues, notes, files, tags, and relationships. With semantic search.",
6
- "version": "1.5.6",
7
- "repository": {
8
- "url": "https://codeberg.org/dpesch/mantisbt-mcp-server",
9
- "source": "codeberg"
10
- },
6
+ "version": "1.5.7",
11
7
  "packages": [
12
8
  {
13
9
  "registryType": "npm",
14
10
  "identifier": "@dpesch/mantisbt-mcp-server",
15
- "version": "1.5.6",
11
+ "version": "1.5.7",
16
12
  "runtimeHint": "npx",
17
13
  "transport": {
18
14
  "type": "stdio"