argusqa-os 9.2.5 → 9.2.6

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/README.md CHANGED
@@ -10,11 +10,15 @@ Automated browser testing pipeline that catches bugs, compares environments, and
10
10
 
11
11
  ## MCP Quick Start
12
12
 
13
- Add to your `.mcp.json` (or ask Claude Code: `claude mcp add argus -- npx -y argusqa-os`):
13
+ Add both servers to your `.mcp.json`:
14
14
 
15
15
  ```json
16
16
  {
17
17
  "mcpServers": {
18
+ "chrome-devtools": {
19
+ "command": "npx",
20
+ "args": ["-y", "chrome-devtools-mcp@latest"]
21
+ },
18
22
  "argus": {
19
23
  "command": "npx",
20
24
  "args": ["-y", "argusqa-os"]
@@ -23,6 +27,25 @@ Add to your `.mcp.json` (or ask Claude Code: `claude mcp add argus -- npx -y arg
23
27
  }
24
28
  ```
25
29
 
30
+ Or register via the Claude Code CLI:
31
+
32
+ ```bash
33
+ claude mcp add chrome-devtools -- npx -y chrome-devtools-mcp@latest
34
+ claude mcp add argus -- npx -y argusqa-os
35
+ ```
36
+
37
+ Set your target URL and start Chrome with remote debugging:
38
+
39
+ ```bash
40
+ # .env
41
+ TARGET_DEV_URL=http://localhost:3000
42
+
43
+ # Start Chrome (required — Argus drives this instance via CDP)
44
+ # macOS: open -a "Google Chrome" --args --remote-debugging-port=9222 --headless=new
45
+ # Windows: "C:\Program Files\Google\Chrome\Application\chrome.exe" --remote-debugging-port=9222 --headless=new
46
+ # Linux: google-chrome --remote-debugging-port=9222 --headless=new --no-sandbox
47
+ ```
48
+
26
49
  Then ask Claude (or any MCP client):
27
50
 
28
51
  ```
@@ -38,7 +61,7 @@ Run argus_audit on http://localhost:3000
38
61
  | `argus_compare` | Diff dev vs staging side-by-side — screenshots, findings delta, environment regressions |
39
62
  | `argus_last_report` | Return the last saved report JSON from the most recent audit |
40
63
 
41
- > **Requires**: Node.js ≥ 20.19, Chrome running with `--remote-debugging-port=9222`, and the [`chrome-devtools-mcp`](https://www.npmjs.com/package/chrome-devtools-mcp) MCP server registered alongside Argus.
64
+ > **Requires**: Node.js ≥ 20.19, Chrome (desktop or headless), and the `chrome-devtools-mcp` server registered alongside Argus (shown above).
42
65
 
43
66
  ---
44
67
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "argusqa-os",
3
- "version": "9.2.5",
3
+ "version": "9.2.6",
4
4
  "mcpName": "io.github.ironclawdevs27/argus",
5
5
  "description": "Argus — AI-powered automated dev-testing platform using Chrome DevTools MCP and Claude Code",
6
6
  "keywords": [
package/src/mcp-server.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * Argus MCP Server (v9.2.3)
3
+ * Argus MCP Server (v9.2.6)
4
4
  *
5
5
  * Exposes Argus as an MCP server so Claude (or any MCP client) can call
6
6
  * argus_audit, argus_audit_full, argus_compare, and argus_last_report
@@ -129,7 +129,7 @@ async function handleLastReport() {
129
129
  // ── Server bootstrap ──────────────────────────────────────────────────────────
130
130
 
131
131
  const server = new Server(
132
- { name: 'argus', version: '9.2.5' },
132
+ { name: 'argus', version: '9.2.6' },
133
133
  { capabilities: { tools: {} } },
134
134
  );
135
135