You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -161,7 +163,23 @@ One server for the whole team — one deployment, everyone connects via HTTP.
161
163
}
162
164
```
163
165
164
-
4. Restart Claude Desktop and test:
166
+
**Claude Code** (terminal / IDE extensions):
167
+
168
+
```bash
169
+
# macOS / Linux
170
+
claude mcp add -s user testops ~/Downloads/testops-mcp-macos-arm64 \
171
+
-e ALLURE_BASE_URL=https://your-testops.com \
172
+
-e ALLURE_TOKEN=your-token-here
173
+
174
+
# Windows (PowerShell)
175
+
claude mcp add -s user testops "$env:USERPROFILE\Downloads\testops-mcp-windows-amd64.exe"`
176
+
-e ALLURE_BASE_URL=https://your-testops.com `
177
+
-e ALLURE_TOKEN=your-token-here
178
+
```
179
+
180
+
The `-s user` flag saves the config to `~/.claude.json` so it's available in all your projects. Use `-s local` to limit it to the current project only.
181
+
182
+
4. Restart Claude Desktop (or reload Claude Code) and test:
165
183
```
166
184
"List all projects in Allure"
167
185
```
@@ -216,9 +234,11 @@ Server runs on `http://localhost:3000`
216
234
217
235
**3. Team members connect with their own tokens**
218
236
219
-
Each team member adds to their Claude Desktop config (**Settings → Developer → Edit Config**):
-**`Authorization`** — each user's named bearer token from `MCP_AUTH_TOKENS`. Omit the `--header "Authorization:..."` arg if the server has no auth configured.
256
290
-**`X-Allure-Token`** — each person's own Allure API token. Actions in Allure are performed under that account.
257
291
258
292
Each person needs to:
259
293
1. Get their personal Allure API token (Settings → API tokens in Allure TestOps)
260
-
2. Add it to their Claude Desktop config as `X-Allure-Token`
261
-
3. Restart Claude Desktop
294
+
2. Add it to their config as `X-Allure-Token`
295
+
3. Restart Claude Desktop (or reload Claude Code)
262
296
263
297
All actions will be done from their personal Allure account! ✅
0 commit comments