@dpesch/mantisbt-mcp-server 1.5.6 → 1.5.8

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,24 @@ This project adheres to [Semantic Versioning](https://semver.org/).
7
7
 
8
8
  ---
9
9
 
10
+ ## [1.5.8] – 2026-03-18
11
+
12
+ ### Added
13
+ - Glama MCP directory badge in README.md and README.de.md (contributed by Frank Fiegel / punkpeye)
14
+
15
+ ---
16
+
17
+ ## [1.5.7] – 2026-03-18
18
+
19
+ ### Added
20
+ - `glama.json`: Glama MCP directory metadata (maintainer claim)
21
+ - CI: GitHub release step in publish workflow (creates GitHub release alongside Codeberg release on tag push)
22
+
23
+ ### Fixed
24
+ - `server.json`: removed `repository` field — Codeberg URL rejected by MCP Registry validation
25
+
26
+ ---
27
+
10
28
  ## [1.5.6] – 2026-03-18
11
29
 
12
30
  ### Added
package/README.de.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@dpesch/mantisbt-mcp-server)](https://www.npmjs.com/package/@dpesch/mantisbt-mcp-server)
4
4
  [![license](https://img.shields.io/npm/l/@dpesch/mantisbt-mcp-server)](LICENSE)
5
+ [![MantisBT MCP Server](https://glama.ai/mcp/servers/dpesch/mantisbt-mcp-server/badges/card.svg)](https://glama.ai/mcp/servers/dpesch/mantisbt-mcp-server)
5
6
 
6
7
  Ein [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) Server, der die [MantisBT REST API](https://documenter.getpostman.com/view/29959/mantis-bug-tracker-rest-api) in Claude Code und andere MCP-fähige Clients integriert. Issues lesen, erstellen und bearbeiten – direkt aus dem Editor heraus.
7
8
 
package/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@dpesch/mantisbt-mcp-server)](https://www.npmjs.com/package/@dpesch/mantisbt-mcp-server)
4
4
  [![license](https://img.shields.io/npm/l/@dpesch/mantisbt-mcp-server)](LICENSE)
5
+ [![MantisBT MCP Server](https://glama.ai/mcp/servers/dpesch/mantisbt-mcp-server/badges/card.svg)](https://glama.ai/mcp/servers/dpesch/mantisbt-mcp-server)
5
6
 
6
7
  A [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server that integrates the [MantisBT REST API](https://documenter.getpostman.com/view/29959/mantis-bug-tracker-rest-api) into Claude Code and other MCP-capable clients. Read, create, and update issues directly from your editor.
7
8
 
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.8",
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.8",
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.8",
16
12
  "runtimeHint": "npx",
17
13
  "transport": {
18
14
  "type": "stdio"