@alternative-path/qa-path-mcp 1.0.0 → 1.0.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/QUICK_INSTALL.md +3 -3
- package/README.md +8 -8
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +1 -1
- package/dist/constants.js.map +1 -1
- package/package.json +1 -1
package/QUICK_INSTALL.md
CHANGED
|
@@ -32,7 +32,7 @@ npm install @alternative-path/qa-path-mcp
|
|
|
32
32
|
You need:
|
|
33
33
|
|
|
34
34
|
1. **API URL** — Your QA-Path API base URL (typically the auth/base API path).
|
|
35
|
-
- Example: `https://api.qa-path.com/api
|
|
35
|
+
- Example: `https://api.qa-path.com/api/`
|
|
36
36
|
- The client uses this as the API root (paths like `/auth/login` are appended as needed).
|
|
37
37
|
|
|
38
38
|
2. **Project ID (Optional)** — UUID of your project (from project settings in the web app).
|
|
@@ -66,7 +66,7 @@ Open the chosen `mcp.json` and add (or merge) the `mcpServers` entry:
|
|
|
66
66
|
"command": "npx",
|
|
67
67
|
"args": ["-y", "@alternative-path/qa-path-mcp"],
|
|
68
68
|
"env": {
|
|
69
|
-
"QA_PATH_API_URL": "https://api.qa-path.com/api/
|
|
69
|
+
"QA_PATH_API_URL": "https://api.qa-path.com/api/",
|
|
70
70
|
"QA_PATH_API_KEY": "your-api-key"
|
|
71
71
|
}
|
|
72
72
|
}
|
|
@@ -117,7 +117,7 @@ The server logs in with your API key on startup. Use *"Check auth status"* or *"
|
|
|
117
117
|
| Issue | What to do |
|
|
118
118
|
|-------|------------|
|
|
119
119
|
| **"Command not found" or "Cannot find module"** | Use the npx method (Method A); no install needed. |
|
|
120
|
-
| **"Authentication failed"** | Ensure `QA_PATH_API_URL` is correct (e.g. `https://api.qa-path.com/api
|
|
120
|
+
| **"Authentication failed"** | Ensure `QA_PATH_API_URL` is correct (e.g. `https://api.qa-path.com/api/`). Check `QA_PATH_API_KEY` is set and valid. |
|
|
121
121
|
| **"Project ID is required"** | Set `QA_PATH_PROJECT_ID` in the server `env`, or pass `projectId` in the tool call when the tool supports it. |
|
|
122
122
|
| **"Network error"** | Confirm `QA_PATH_API_URL` is correct and reachable; check firewall/VPN. |
|
|
123
123
|
| **NLP script generation fails** | Ensure the organization service returns a valid `agentServiceUrl` for your project. |
|
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ Simply use `npx` in your MCP configuration - it will download and run the packag
|
|
|
35
35
|
"command": "npx",
|
|
36
36
|
"args": ["-y", "@alternative-path/qa-path-mcp"],
|
|
37
37
|
"env": {
|
|
38
|
-
"QA_PATH_API_URL": "https://qa-path.com/api/
|
|
38
|
+
"QA_PATH_API_URL": "https://api.qa-path.com/api/",
|
|
39
39
|
"QA_PATH_API_KEY": "your-api-key"
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -56,7 +56,7 @@ Then use in your MCP configuration:
|
|
|
56
56
|
"qa-path": {
|
|
57
57
|
"command": "qa-path-mcp",
|
|
58
58
|
"env": {
|
|
59
|
-
"QA_PATH_API_URL": "https://qa-path.com/api/
|
|
59
|
+
"QA_PATH_API_URL": "https://api.qa-path.com/api/",
|
|
60
60
|
"QA_PATH_API_KEY": "your-api-key"
|
|
61
61
|
}
|
|
62
62
|
}
|
|
@@ -78,7 +78,7 @@ Then use the full path:
|
|
|
78
78
|
"command": "node",
|
|
79
79
|
"args": ["./node_modules/@alternative-path/qa-path-mcp/dist/index.js"],
|
|
80
80
|
"env": {
|
|
81
|
-
"QA_PATH_API_URL": "https://
|
|
81
|
+
"QA_PATH_API_URL": "https://api.qa-path.com/api/",
|
|
82
82
|
"QA_PATH_API_KEY": "your-api-key"
|
|
83
83
|
}
|
|
84
84
|
}
|
|
@@ -102,8 +102,8 @@ QA-Path requires configuration via environment variables (e.g. in your MCP confi
|
|
|
102
102
|
### Required Configuration
|
|
103
103
|
|
|
104
104
|
```bash
|
|
105
|
-
# API base URL
|
|
106
|
-
QA_PATH_API_URL=
|
|
105
|
+
# API base URL (e.g. https://api.qa-path.com/api/)
|
|
106
|
+
QA_PATH_API_URL=https://api.qa-path.com/api/
|
|
107
107
|
|
|
108
108
|
# API key (required) — from your QA-Path profile / API tokens
|
|
109
109
|
QA_PATH_API_KEY=your-api-key-here
|
|
@@ -120,7 +120,7 @@ QA_PATH_API_KEY=your-api-key-here
|
|
|
120
120
|
|
|
121
121
|
```bash
|
|
122
122
|
# API Configuration
|
|
123
|
-
QA_PATH_API_URL=
|
|
123
|
+
QA_PATH_API_URL=https://api.qa-path.com/api/
|
|
124
124
|
QA_PATH_API_KEY=your-api-key-here
|
|
125
125
|
```
|
|
126
126
|
|
|
@@ -137,7 +137,7 @@ QA_PATH_API_KEY=your-api-key-here
|
|
|
137
137
|
"command": "npx",
|
|
138
138
|
"args": ["-y", "@alternative-path/qa-path-mcp"],
|
|
139
139
|
"env": {
|
|
140
|
-
"QA_PATH_API_URL": "
|
|
140
|
+
"QA_PATH_API_URL": "https://api.qa-path.com/api/",
|
|
141
141
|
"QA_PATH_API_KEY": "your-api-key"
|
|
142
142
|
}
|
|
143
143
|
}
|
|
@@ -157,7 +157,7 @@ QA_PATH_API_KEY=your-api-key-here
|
|
|
157
157
|
"command": "npx",
|
|
158
158
|
"args": ["-y", "@alternative-path/qa-path-mcp"],
|
|
159
159
|
"env": {
|
|
160
|
-
"QA_PATH_API_URL": "
|
|
160
|
+
"QA_PATH_API_URL": "https://api.qa-path.com/api/",
|
|
161
161
|
"QA_PATH_API_KEY": "your-api-key"
|
|
162
162
|
}
|
|
163
163
|
}
|
package/dist/constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,OAAO,
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,OAAO,QAAoE,CAAC;AAEzF,eAAO,MAAM,OAAO,oBAA8B,CAAC"}
|
package/dist/constants.js
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
* Environment variable names for QA Path MCP server.
|
|
3
3
|
* Only the required/primary vars are centralized; optional ones are inlined where used.
|
|
4
4
|
*/
|
|
5
|
-
export const API_URL = process.env.QA_PATH_API_URL || "
|
|
5
|
+
export const API_URL = process.env.QA_PATH_API_URL || "https://api.dev.qa-path.com/api/";
|
|
6
6
|
export const API_KEY = process.env.QA_PATH_API_KEY;
|
|
7
7
|
//# sourceMappingURL=constants.js.map
|
package/dist/constants.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,eAAe,IAAI,
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,eAAe,IAAI,kCAAkC,CAAC;AAEzF,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,eAAe,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alternative-path/qa-path-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "MCP server for QA-Path Test Management System - Manage test cases, modules, components, and subcomponents via Cursor, Claude and VS Code",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|