@qase/mcp-server 1.1.0 → 1.1.1
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/package.json +2 -1
- package/server.json +36 -0
package/package.json
CHANGED
package/server.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.qase/mcp-server",
|
|
4
|
+
"title": "Qase Test Management",
|
|
5
|
+
"description": "Official MCP server for Qase — manage test cases, runs, suites, defects via AI tools.",
|
|
6
|
+
"websiteUrl": "https://qase.io",
|
|
7
|
+
"repository": {
|
|
8
|
+
"url": "https://github.com/qase-tms/qase-mcp-server",
|
|
9
|
+
"source": "github"
|
|
10
|
+
},
|
|
11
|
+
"version": "1.1.1",
|
|
12
|
+
"packages": [
|
|
13
|
+
{
|
|
14
|
+
"registryType": "npm",
|
|
15
|
+
"identifier": "@qase/mcp-server",
|
|
16
|
+
"version": "1.1.1",
|
|
17
|
+
"transport": {
|
|
18
|
+
"type": "stdio"
|
|
19
|
+
},
|
|
20
|
+
"environmentVariables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "QASE_API_TOKEN",
|
|
23
|
+
"description": "Qase API token from app.qase.io > Settings > API Tokens",
|
|
24
|
+
"isRequired": true,
|
|
25
|
+
"isSecret": true
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "QASE_API_DOMAIN",
|
|
29
|
+
"description": "Custom API domain for enterprise (default: api.qase.io)",
|
|
30
|
+
"isRequired": false,
|
|
31
|
+
"default": "api.qase.io"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
}
|