argusqa-os 9.2.3 → 9.2.5
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 +2 -0
- package/package.json +2 -1
- package/src/mcp-server.js +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Argus — AI-Powered Dev Testing Tool
|
|
2
2
|
|
|
3
|
+
[](https://glama.ai/mcp/servers/ironclawdevs27/Argus)
|
|
4
|
+
|
|
3
5
|
> *Argus Panoptes — the all-seeing giant of Greek mythology with a hundred eyes who never slept.*
|
|
4
6
|
|
|
5
7
|
Automated browser testing pipeline that catches bugs, compares environments, and sends rich reports to Slack (or generates a self-contained HTML dashboard when Slack is not configured) — powered by Chrome DevTools MCP and Claude Code.
|
package/package.json
CHANGED
package/src/mcp-server.js
CHANGED
|
@@ -36,7 +36,7 @@ const REPORTS_DIR = path.resolve(process.cwd(), 'reports');
|
|
|
36
36
|
const TOOLS = [
|
|
37
37
|
{
|
|
38
38
|
name: 'argus_audit',
|
|
39
|
-
description: 'Run a
|
|
39
|
+
description: 'Run a fast QA audit on a URL. Detects JavaScript errors, unhandled promise rejections, network failures (4xx/5xx), API frequency loops, CSS cascade issues, SEO problems, security vulnerabilities, content quality issues, and accessibility violations. Returns findings as JSON grouped by severity (critical/warning/info).',
|
|
40
40
|
inputSchema: {
|
|
41
41
|
type: 'object',
|
|
42
42
|
properties: {
|
|
@@ -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.
|
|
132
|
+
{ name: 'argus', version: '9.2.5' },
|
|
133
133
|
{ capabilities: { tools: {} } },
|
|
134
134
|
);
|
|
135
135
|
|