Argus
Argus is an MCP server that enables automated web application testing through browser control, interaction, verification, and reporting.
Session Management
Start a browser session (
start_session) — launch Playwright at a given URL with configurable headless mode and viewportEnd a session (
end_session) — close the browser and generate an HTML report of all findings
Page Interaction
get_page_state— retrieve current URL, title, and a numbered list of interactive elementsclick— click any element by indextype_text— type into input fields by indexselect_option— choose values from dropdowns by indexnavigate/go_back/scroll_down— control page navigation and scrolling
Observation & Capture
screenshot— capture the current viewportget_errors— collect JavaScript console errors and HTTP 4xx/5xx network failures
Verification & Testing
verify_action— confirm a change (delete, edit, toggle) actually persisted by re-fetching page contenttest_action— click an element and auto-capture before/after state diff with screenshotstest_form— fill, submit, and verify form outcomes (success or validation errors)test_crud— run a full Create → Verify → Edit → Verify → Delete → Verify cycle automatically
Site-Wide Probing
check_links— crawl internal links and report dead links (404/5xx)check_performance— measure page load time, resource count, and large resourcescrawl_site— visit all internal pages, run all detectors, and check links/performance across the entire site
Tested on Angular.dev SPA, detects accessibility bugs and other issues through automated exploratory testing of Angular applications.
Alternative to Cypress that doesn't require writing test scripts, instead using AI to discover bugs through exploratory testing.
Tested on Next.js applications including React.dev and Tailwind CSS sites, detects accessibility, performance, and other bugs in Next.js SPAs.
Tested on React.dev SPA, detects accessibility bugs and other issues through automated exploratory testing of React applications.
Tested on TodoMVC Svelte SPA, detects SEO and accessibility bugs through automated exploratory testing of Svelte applications.
Tested on Tailwind CSS Next.js site, detects accessibility, performance, and resource-related bugs through automated exploratory testing.
Tested on Vue.js Vitepress SPA, detects accessibility bugs through automated exploratory testing of Vitepress documentation sites.
Tested on Vue.js Vitepress SPA, detects accessibility bugs through automated exploratory testing of Vue.js applications.
Argus
An MCP server that tests apps like a real testing engineer—exploring user journeys, discovering unscripted bugs, and proving each finding before reporting it.
Argus is an MCP server. It adds evidence-first browser QA to Claude Code, Codex, Cursor, or any MCP host without taking over the host agent's identity or broader coding task. The agent explores, inspects, verifies persistence, and records reproducible bugs. Every certified finding is independently re-confirmed from a clean page load before it's reported.
Product page · Quick start · Why Argus · Compared · Tools · Benchmarks
The output
Give it a URL; get a report of bugs — each tagged with whether Argus independently reproduced it or only observed it:
The green badge is the whole point. Anyone can have an LLM claim a bug. Argus re-loads the page from scratch and re-checks the symptom before it says VERIFIED — so the report is a list of bugs you can trust, not a list of guesses to triage.
Related MCP server: Aiqaramba
How it works
flowchart LR
A(["observe"]) --> B{"looks wrong?"}
B -->|not sure| C["act: click · type · resize · verify"]
C --> A
B -->|bug| D["verify_persistence — reload from a clean state"]
D -->|symptom repeats| E(["VERIFIED"])
D -->|symptom gone| F(["dropped — no false positive"])
E --> G[["report: HTML · JSON · JUnit · SARIF"]]The agent is the intelligence. Argus supplies concise QA guidance, a description-keyed tool surface (click_what("Login button"), not click(7)), a goal coverage ledger, and a reproduction-receipt engine that turns "the model thinks this is a bug" into "this bug is real, here's the proof."
Quick start
With uv installed, no global Python package install is required. Install Chromium once:
uvx --from playwright playwright install chromiumThen connect Argus to your MCP client.
Claude Code
claude mcp add argus -- uvx --from argus-testing argus-mcpCodex and the ChatGPT desktop app
Codex CLI, the Codex IDE extension, and the ChatGPT desktop app share the same local MCP configuration:
codex mcp add argus -- uvx --from argus-testing argus-mcpCursor
The button adds Argus to Cursor; run the Chromium installation command above once before the first test.
Any stdio MCP client
{
"mcpServers": {
"argus": {
"command": "uvx",
"args": ["--from", "argus-testing", "argus-mcp"]
}
}
}The default core profile exposes the primary web-testing workflow without flooding the host with every specialist tool. Use uvx --from argus-testing argus-mcp --list-tools to inspect the selected profile, --tool-profile screen for native macOS testing, or --tool-profile full for the entire advanced surface. ARGUS_TOOL_PROFILE provides the same setting through the environment.
Then just ask, in your agent session:
"Test my app at http://localhost:3000 — find real bugs."
That's it. The agent drives; Argus keeps it honest and writes the report.
For a scoped review, the host can give start_session explicit goals, constraints, and an advisory time_budget_minutes. Argus returns the full testing protocol once and keeps outstanding goals and discovered pages visible in later observations. Mark a goal in_progress before its journey; when coverage_update marks it exercised or blocked, Argus requires a concrete explanation and automatically links the URLs, value-redacted actions, screenshots, persistence checks, bugs, and observations produced in that testing window. The final HTML and JSON reports preserve both completed and unfinished coverage instead of implying that an incomplete pass was comprehensive.
pip install argus-testing
playwright install chromium
claude mcp add argus -- argus-mcp# Uses a LiteLLM-backed planner. Set a provider key (OPENAI_API_KEY, DEEPSEEK_API_KEY, …).
uvx --from argus-testing argus http://localhost:3000 --model deepseek/deepseek-chat
# Higher recall: union N independent passes (deduped, proven instance kept)
uvx --from argus-testing argus http://localhost:3000 --passes 3pip install 'argus-testing[mac]'
brew install cliclick # keystroke / coordinate fallback
argus-mcp --doctor # check Screen Recording + Accessibility grants
claude mcp add argus-screen -- argus-mcp --tool-profile screenSame description-keyed tools, but the target is whatever app is foreground on macOS — Notes, Cursor, Safari, your in-progress feature. No headless Chrome, no scripted Playwright. Argus sees what you see, via the Accessibility tree.
Why Argus is different
Existing testing tools only test what you script. Playwright and Cypress run the assertions you wrote. Argus discovers bugs you didn't think to test for — and then does the thing an LLM alone can't be trusted to do: proves them.
Autonomous & black-box | You give it a URL, not a test plan. It explores like a real user — no repo access, no scripted steps. |
Coverage contract | Optional natural-language goals, user constraints, discovered pages, and time budget stay visible throughout the session and in the final report. |
Reproduction receipts | Before certifying a bug, it re-loads the page from a clean state and re-confirms the symptom. Engineered for zero false-certifications. |
Finds human-eye bugs | Fake "Only 3 left!" scarcity, a "Saved" toast that doesn't save, a sale badge where the price didn't drop, a stale navbar after a rename. Static analysis catches none of these. |
Discover → guard | Findings are journaled; |
Machine-readable | Every report also emits JSON, JUnit, and SARIF — so findings gate a pipeline and surface as inline GitHub PR annotations. |
How it compares
On the axis that matters for finding bugs — autonomously discover, independently verify, and report — Argus occupies a different slot from the browser-MCP crowd:
Argus | Playwright MCP | Chrome DevTools MCP | browser-use | |
Autonomously finds unknown bugs | Yes | No (driver) | No (debugger) | Partial (task-scoped) |
Independently verifies each finding | Yes (receipt) | No | No | No (LLM score) |
Evidence-rich bug report | Yes | No | No | Partial |
Black-box (no repo / source access) | Yes | Yes | Yes | Yes |
Zero-LLM CI regression gate | Yes | Partial | No | Partial |
These aren't "worse" tools — they're a different job. Playwright MCP gives an agent excellent hands; Chrome DevTools MCP gives it deep network/perf/memory inspection Argus doesn't have. Argus is the layer that decides what's a bug and proves it. Use them together.
Benchmarks
$ python -m argus.bench --target all
buggytasks 22 / 22 = 100 % · mechanical bugs (console errors, fake delete, auth bypass…)
darkshop 12 / 12 = 100 % · human-eye bugs (fake scarcity, lying toasts, stale state…)
──────────────────────────────────────────────────────────────────────
total 34 / 34 = 100 % · reproducible from git clone in two commands34 / 34 is the capability ceiling — what's findable through the tool surface, measured by deterministic scripts. It is deliberately separate from how often a given LLM remembers to use the tools well, which is noisy and honestly reported below.
python -m argus.bench.agent_runner puts an actual model in the driver's seat and scores recall across trials. What we've learned running it:
Real recall sits well below the
34/34ceiling. A live driver finds a fraction of the seeded bugs per pass — the ceiling is what's findable, this is what a model finds.Variance is large — never rank models on a few runs. Per-trial recall swings widely; we report the spread, not a single hero number.
Dogfooding the bench found real bugs in Argus itself — a
record_bugcrash on a string argument that silently dropped findings, resolver misses on common phrasings. The tool-testing tool got tested.Precision holds regardless of driver. Across every trial, the reproduction receipt kept false-certifications at zero — a weak model finds fewer bugs, but the ones marked VERIFIED are still real.
BuggyTasks (:5555) — 22 mechanical bugs in a task app: console errors, dead links, fake delete (UI says "deleted!" but data persists on refresh), auth bypass, NaN dates, off-by-one counts, race conditions. The "scripted E2E could find these" tier.
DarkShop (:5556) — 12 human-eye bugs in a polished-looking store: hardcoded "Only 3 left!" scarcity, -50% badges where sale price equals original, a "free shipping over $50" banner contradicted by a flat $5 at checkout, inverted visual hierarchy ("Add to Cart" demoted under a prominent "Subscribe"), cross-page state drift (rename sticks on /account, navbar greeting doesn't). Static analysis catches roughly none of these — they require an agent that reads the page and reasons.
python test-site/app.py # BuggyTasks :5555
python human-eye-fixture/app.py # DarkShop :5556
python -m argus.bench --target allTool surface
argus-mcp starts with the focused core web profile. Every public tool is documented below. The counts are also available directly from the installed server:
uvx --from argus-testing argus-mcp --list-tools
uvx --from argus-testing argus-mcp --tool-profile screen --list-tools
uvx --from argus-testing argus-mcp --tool-profile full --list-toolsProfile | Public tools | Intended use |
| 30 | Primary browser QA workflow; the default. |
| 14 | Focused native macOS testing through Accessibility and screenshots. |
| 77 | Everything in core and screen, plus specialist browser, state, network, coordinate, and crawl controls. |
Tools | Purpose |
| Start an |
| Return URL, title, description-keyed interactive elements, counts, visible feedback, ARIA tree, and viewport state. |
| Open a goal evidence window with |
| Click the element best matching a natural-language description; return candidates instead of guessing when ambiguous. |
| Resolve a field by description, then type text or select an option. |
| Exercise hover states and keyboard interactions against description-keyed targets. |
| Test responsive breakpoints or reopen the page under real mobile touch, UA, DPR, and viewport settings. |
| Attach one or more local files to a matching file input. |
| Navigate directly, return through browser history, or reveal content below the fold. |
| Inspect computed styles, ARIA and markup, or bounded overflow, clipping, small-target, and overlay signals. |
| Capture viewport, full-page, or element evidence and produce a red-tint pixel-diff overlay. |
| Drain correlated console errors and HTTP 4xx/5xx events captured since the previous read. |
| Save and restore a named authenticated or seeded browser state, with an optional liveness check. |
| Force a fresh load and check whether target text is present or absent. The “Saved!” toast is not proof; this is. |
| Perform a description-keyed action or form submission and return the resulting state diff in one round trip. |
| Probe current-page internal links and expose raw browser performance metrics without auto-certifying generic audit findings. |
| Re-test journaled findings for the current origin without requiring another discovery pass. |
| Record a reproducible defect with evidence and receipt, or keep a qualitative review note separate from certified bugs. |
| Close the active session and emit HTML, JSON, JUnit, and SARIF reports. |
Reports keep original screenshots as evidence and, by default, write compact WebP previews under report-assets/ instead of base64-embedding every full-size PNG into the HTML. Set ARGUS_PORTABLE_REPORT=1 when a single self-contained HTML file is more important than size. JSON output includes complete reproduction receipts, the coverage contract and its structured evidence references, constraints, review mode, tool-call and recorded-step counts, screenshot metadata, and qualitative observations. JUnit suite failure totals match the emitted <failure> nodes.
Tools | Purpose |
| Bind to the foreground or a named macOS app after checking Screen Recording and Accessibility permissions. |
| Return the foreground app, window title, bounded AX tree, screen coordinates, and a fresh screenshot. |
| Resolve against the AX tree and act through native accessibility, falling back to |
| Wait until the target window remains visually stable within a configurable threshold. |
| Control and inspect an app by localized name, bundle ID, or absolute path. |
| Capture a precise rectangular screen region for fine visual evidence. |
| Report elapsed time, remaining session budget, action counts, and the abort-file path. |
| Use the shared evidence, reporting, and teardown tools in screen mode. |
Safety: per-call timeout, a 30-minute session cap, a ~/.argus/abort panic file that halts every subsequent action, and an automatic before/after screenshot trail on every action.
The full profile includes every core and screen tool above plus these 36 specialist tools. Use it when the workflow genuinely needs low-level state, fault injection, multi-tab control, coordinates, or crawling.
Additional tools | Purpose |
| Fire a real clipboard paste event or open a target's context menu. |
| Emulate dark/light color schemes and reduced-motion preferences. |
| Exercise canvas/WebGL, hover-reveal, and drag-and-drop interfaces by coordinates or description. |
| Dispatch a real file drop onto a matching dropzone. |
| Queue an accept, dismiss, or prompt response for the next JavaScript dialog. |
| Run arbitrary page-context JavaScript. It remains disabled unless the server also starts with |
| Inspect the bounded request log or retrieve full detail for one matching request. |
| Inject canned HTTP responses and independently reset active mocks or captured traffic. |
| Inspect, seed, or clear browser-context cookies. |
| Inspect and mutate page-local |
| Control OAuth, payment, and other popup or multi-tab journeys. |
| Wait for specific visible text or matching outgoing traffic with a bounded timeout. |
| Inspect files downloaded during the session, including their paths and sizes. |
| Crawl bounded internal pages and collect browser events, link results, and performance evidence. |
| Use absolute screen coordinates and multi-key sequences when a native app exposes no useful AX element. |
To expose eval_js as an operational tool rather than a disabled safety stub:
uvx --from argus-testing argus-mcp --tool-profile full --unsafeLocal-first security and privacy
Argus runs on your machine and does not send telemetry to an Argus-operated service. Reports and screenshots stay under ./argus-reports by default; your MCP host and its configured model provider can still receive tool results included in the conversation. Browser actions and native macOS controls can cause real side effects, so use test accounts and non-production data wherever possible.
Read the full privacy disclosure and security policy before using Argus against sensitive systems.
Philosophy
Argus assumes an Opus-class driver. Static rules that pretend to be the smart layer are subtractive — they add maintenance and false positives and pull attention from what the agent actually saw. So detector.py is tiny: it only captures the two channels the agent literally cannot see (the console event stream and the HTTP layer). "Is this toast misleading? Is the visual hierarchy wrong? Is that count off?" — the agent reads observe() and decides.
The global instruction is intentionally tiny so it does not repeat a long QA prompt in every MCP tool description. start_session returns the full evidence-first ritual, goals, constraints, and budget once; observations then surface only the compact live coverage ledger. Argus remains a capability inside the user's current task: it does not prevent implementation work, replace the host's identity, or imply authority for irreversible external actions.
click_what("Login button"), not click(7). Element indices are a leaky abstraction even within one observe. A capable agent describes what it wants by what it is, and the resolver maps that to the right element — refusing to misclick on ambiguity rather than guessing.
Project layout
argus/
├── mcp_server.py # tool surface + role instructions + reproduction-receipt engine
├── browser.py # Playwright backend: DOM/ARIA extraction, capsule/replay
├── resolver.py # description → element (web + screen)
├── reporter.py # HTML + JSON + JUnit + SARIF
├── detector.py # console + network capture (only)
├── cli.py # argus (explore) + argus-regression
├── bench/ # deterministic ceiling + real-LLM recall harness
└── screen/ # macOS AX backend, permissions, safety
test-site/ # BuggyTasks (22 mechanical bugs)
human-eye-fixture/ # DarkShop (12 human-eye bugs)MIT licensed · Product page · Agent install guide · Privacy · Security · Built by Yichen Wu
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceAI-powered agent that integrates with coding assistants via MCP to automate web testing workflows, allowing developers to record tests, execute regression testing, and discover test flows using natural language prompts.Last updated68Apache 2.0
- Flicense-qualityDmaintenanceBrowser-based QA testing for AI-built software. Agents open real browsers (via Selenium), navigate pages, fill forms, click buttons, and report findings. Two modes: targeted tests (30-90s) and full-site discovery scans (3-15min).Last updated
- AlicenseAqualityAmaintenanceAI-powered QA testing platform — catches JS errors, accessibility failures, visual regressions, API loops, security issues, and more via Chrome DevTools MCPLast updated93904MIT
- AlicenseAqualityBmaintenancePoint your coding agent at a URL and get a real-browser QA audit: broken signup/login/checkout flows, JS console errors, missing analytics, consent + security headers, mobile tap targets, and accessibility — returned as machine-verified findings graded A-F.Last updated442Apache 2.0
Related MCP Connectors
AI QA tester — real browsers scan sites for bugs, SEO, perf, and accessibility issues via chat.
Website QA for your coding agent: audit SEO, performance, security, accessibility over MCP.
Screenshot, diff, audit and sitemap-capture any web page — 5 MCP tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chriswu727/argus'
If you have feedback or need assistance with the MCP directory API, please join our Discord server