@qase/mcp-server 1.1.3 → 1.1.4
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.
- package/CHANGELOG.md +11 -0
- package/Dockerfile +40 -0
- package/build/version.d.ts +1 -1
- package/build/version.js +1 -1
- package/package.json +2 -2
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.1.4]
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Updated `qase-api-client` from 1.1.3 to 1.1.5
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- Pre-commit hook to verify version consistency across `package.json` and `server.json`
|
|
17
|
+
|
|
8
18
|
## [1.1.3]
|
|
9
19
|
|
|
10
20
|
### Changed
|
|
@@ -217,6 +227,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
217
227
|
- Results are identified by hash, not numeric ID
|
|
218
228
|
- Custom fields accessed via bracket notation in QQL: `cf["Field Name"]`
|
|
219
229
|
|
|
230
|
+
[1.1.4]: https://github.com/qase-tms/qase-mcp-server/compare/v1.1.3...v1.1.4
|
|
220
231
|
[1.1.3]: https://github.com/qase-tms/qase-mcp-server/compare/v1.1.2...v1.1.3
|
|
221
232
|
[1.1.2]: https://github.com/qase-tms/qase-mcp-server/compare/v1.1.0...v1.1.2
|
|
222
233
|
[1.1.0]: https://github.com/qase-tms/qase-mcp-server/compare/v1.0.0...v1.1.0
|
package/Dockerfile
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# --- Build stage ---
|
|
2
|
+
FROM node:22-alpine AS builder
|
|
3
|
+
|
|
4
|
+
WORKDIR /app
|
|
5
|
+
|
|
6
|
+
# Copy only dependency files for layer caching
|
|
7
|
+
COPY package.json package-lock.json ./
|
|
8
|
+
RUN npm ci --ignore-scripts
|
|
9
|
+
|
|
10
|
+
# Copy source and build
|
|
11
|
+
COPY tsconfig.json ./
|
|
12
|
+
COPY src/ ./src/
|
|
13
|
+
RUN npm run build
|
|
14
|
+
|
|
15
|
+
# --- Production stage ---
|
|
16
|
+
FROM node:22-alpine AS production
|
|
17
|
+
|
|
18
|
+
# Security: non-root user
|
|
19
|
+
RUN addgroup -S mcpgroup && adduser -S mcpuser -G mcpgroup
|
|
20
|
+
|
|
21
|
+
WORKDIR /app
|
|
22
|
+
|
|
23
|
+
# Production dependencies only
|
|
24
|
+
COPY package.json package-lock.json ./
|
|
25
|
+
RUN npm ci --omit=dev --ignore-scripts && npm cache clean --force
|
|
26
|
+
|
|
27
|
+
# Copy built code
|
|
28
|
+
COPY --from=builder /app/build ./build
|
|
29
|
+
|
|
30
|
+
# Switch to non-root user
|
|
31
|
+
USER mcpuser
|
|
32
|
+
|
|
33
|
+
# Health check
|
|
34
|
+
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
|
|
35
|
+
CMD wget --no-verbose --tries=1 --spider http://localhost:3000/health || exit 1
|
|
36
|
+
|
|
37
|
+
EXPOSE 3000
|
|
38
|
+
|
|
39
|
+
# Default: Streamable HTTP transport
|
|
40
|
+
CMD ["node", "build/index.js", "--transport", "streamable-http", "--port", "3000"]
|
package/build/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.1.
|
|
1
|
+
export declare const VERSION = "1.1.4";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/build/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qase/mcp-server",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"mcpName": "io.qase/mcp-server",
|
|
5
5
|
"description": "Official MCP server for Qase Test Management Platform",
|
|
6
6
|
"type": "module",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"form-data": "^4.0.5",
|
|
73
73
|
"neverthrow": "^8.2.0",
|
|
74
74
|
"npm": "^11.12.0",
|
|
75
|
-
"qase-api-client": "
|
|
75
|
+
"qase-api-client": "1.1.5",
|
|
76
76
|
"zod": "^3.24.2",
|
|
77
77
|
"zod-to-json-schema": "^3.24.3"
|
|
78
78
|
},
|
package/server.json
CHANGED
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
"url": "https://github.com/qase-tms/qase-mcp-server",
|
|
9
9
|
"source": "github"
|
|
10
10
|
},
|
|
11
|
-
"version": "1.1.
|
|
11
|
+
"version": "1.1.4",
|
|
12
12
|
"packages": [
|
|
13
13
|
{
|
|
14
14
|
"registryType": "npm",
|
|
15
15
|
"identifier": "@qase/mcp-server",
|
|
16
|
-
"version": "1.1.
|
|
16
|
+
"version": "1.1.4",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
},
|