@dpesch/mantisbt-mcp-server 1.5.5 → 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,26 @@ 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
+
21
+ ## [1.5.6] – 2026-03-18
22
+
23
+ ### Added
24
+ - `server.json`: MCP Registry metadata for publishing to the official MCP Registry (registry.modelcontextprotocol.io)
25
+ - `package.json`: `mcpName` field (`io.github.dpesch/mantisbt-mcp-server`) required by the MCP Registry publisher
26
+ - `.gitignore`: exclude `mcp-publisher.exe` and `.mcpregistry_*` token files
27
+
28
+ ---
29
+
10
30
  ## [1.5.5] – 2026-03-18
11
31
 
12
32
  ### Fixed
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,7 @@
1
1
  {
2
2
  "name": "@dpesch/mantisbt-mcp-server",
3
- "version": "1.5.5",
3
+ "version": "1.5.7",
4
+ "mcpName": "io.github.dpesch/mantisbt-mcp-server",
4
5
  "description": "MCP server for MantisBT REST API – read and manage bug tracker issues",
5
6
  "author": "Dominik Pesch",
6
7
  "license": "MIT",
package/server.json ADDED
@@ -0,0 +1,129 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.dpesch/mantisbt-mcp-server",
4
+ "title": "MantisBT MCP Server",
5
+ "description": "MantisBT MCP server – manage issues, notes, files, tags, and relationships. With semantic search.",
6
+ "version": "1.5.7",
7
+ "packages": [
8
+ {
9
+ "registryType": "npm",
10
+ "identifier": "@dpesch/mantisbt-mcp-server",
11
+ "version": "1.5.7",
12
+ "runtimeHint": "npx",
13
+ "transport": {
14
+ "type": "stdio"
15
+ },
16
+ "environmentVariables": [
17
+ {
18
+ "name": "MANTIS_BASE_URL",
19
+ "description": "Base URL of the MantisBT REST API, e.g. https://your-mantis.example.com/api/rest",
20
+ "isRequired": true,
21
+ "isSecret": false,
22
+ "format": "string",
23
+ "placeholder": "https://your-mantis.example.com/api/rest"
24
+ },
25
+ {
26
+ "name": "MANTIS_API_KEY",
27
+ "description": "MantisBT API key (Profile → API Tokens in MantisBT)",
28
+ "isRequired": true,
29
+ "isSecret": true,
30
+ "format": "string"
31
+ },
32
+ {
33
+ "name": "MANTIS_CACHE_DIR",
34
+ "description": "Directory for the metadata cache. Defaults to ~/.cache/mantisbt-mcp",
35
+ "isRequired": false,
36
+ "isSecret": false,
37
+ "format": "filepath"
38
+ },
39
+ {
40
+ "name": "MANTIS_CACHE_TTL",
41
+ "description": "Metadata cache TTL in seconds. Default: 3600 (1 hour)",
42
+ "isRequired": false,
43
+ "isSecret": false,
44
+ "format": "number",
45
+ "default": "3600"
46
+ },
47
+ {
48
+ "name": "TRANSPORT",
49
+ "description": "Transport mode. 'stdio' for local use (default), 'http' for remote/team deployments",
50
+ "isRequired": false,
51
+ "isSecret": false,
52
+ "format": "string",
53
+ "default": "stdio",
54
+ "choices": ["stdio", "http"]
55
+ },
56
+ {
57
+ "name": "PORT",
58
+ "description": "HTTP port when TRANSPORT=http. Default: 3000",
59
+ "isRequired": false,
60
+ "isSecret": false,
61
+ "format": "number",
62
+ "default": "3000"
63
+ },
64
+ {
65
+ "name": "MCP_HTTP_HOST",
66
+ "description": "Bind address when TRANSPORT=http. Default: 127.0.0.1 (local only). Use 0.0.0.0 for Docker/remote.",
67
+ "isRequired": false,
68
+ "isSecret": false,
69
+ "format": "string",
70
+ "default": "127.0.0.1"
71
+ },
72
+ {
73
+ "name": "MCP_HTTP_TOKEN",
74
+ "description": "Optional Bearer token to protect the /mcp endpoint when TRANSPORT=http",
75
+ "isRequired": false,
76
+ "isSecret": true,
77
+ "format": "string"
78
+ },
79
+ {
80
+ "name": "MANTIS_SEARCH_ENABLED",
81
+ "description": "Enable offline semantic search (requires ~80 MB model download on first use)",
82
+ "isRequired": false,
83
+ "isSecret": false,
84
+ "format": "boolean",
85
+ "default": "false"
86
+ },
87
+ {
88
+ "name": "MANTIS_SEARCH_BACKEND",
89
+ "description": "Vector store backend for semantic search. 'vectra' (default, pure JS) or 'sqlite-vec' (faster for >10k issues)",
90
+ "isRequired": false,
91
+ "isSecret": false,
92
+ "format": "string",
93
+ "default": "vectra",
94
+ "choices": ["vectra", "sqlite-vec"]
95
+ },
96
+ {
97
+ "name": "MANTIS_SEARCH_DIR",
98
+ "description": "Directory for the semantic search index. Defaults to ~/.cache/mantisbt-mcp/search",
99
+ "isRequired": false,
100
+ "isSecret": false,
101
+ "format": "filepath"
102
+ },
103
+ {
104
+ "name": "MANTIS_SEARCH_MODEL",
105
+ "description": "Hugging Face model for embeddings. Default: Xenova/paraphrase-multilingual-MiniLM-L12-v2",
106
+ "isRequired": false,
107
+ "isSecret": false,
108
+ "format": "string",
109
+ "default": "Xenova/paraphrase-multilingual-MiniLM-L12-v2"
110
+ },
111
+ {
112
+ "name": "MANTIS_SEARCH_THREADS",
113
+ "description": "ONNX inference threads for the embedding model. Default: 1",
114
+ "isRequired": false,
115
+ "isSecret": false,
116
+ "format": "number",
117
+ "default": "1"
118
+ },
119
+ {
120
+ "name": "MANTIS_UPLOAD_DIR",
121
+ "description": "If set, restricts file uploads to this directory (path traversal protection)",
122
+ "isRequired": false,
123
+ "isSecret": false,
124
+ "format": "filepath"
125
+ }
126
+ ]
127
+ }
128
+ ]
129
+ }