Local QA MCP: scan URLs, inspect pages, generate Playwright repros, and run tests.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Give a coding agent independent QA evidence before it declares a web change done: scan the page, inspect the UI, generate a focused Playwright repro, then review the execution result.
The four local tools require no QualityMax account, API key, or hosted service.
Ask an MCP-enabled agent to scan the URL it changed, or run the local CLI:
The report includes a graded summary, findings, concrete reproduction steps, and suggested fixes. One command exercises all four tools against a checked-in, dependency-free fixture β see the reproducible demo.
All nine checks run off a single page load. Pass checks to run a subset.
| Check | What it reports |
|---|---|
console | JavaScript errors, warnings, and failed requests |
links | Broken and redirecting links, up to maxLinks |
accessibility | Missing alt text, unlabelled controls, nameless interactive elements, heading structure |
performance | Core Web Vitals: LCP, CLS, TTFB, FCP |
seo | Title and meta description |
security_headers | CSP, HSTS, X-Content-Type-Options, Referrer-Policy |
cookies | Missing Secure/HttpOnly/SameSite, third-party cookies, known trackers, tracking before consent |
mixed_content | HTTP subresources and form actions on an HTTPS page, split into browser-blocked active and passive |
weight | Transfer bytes, request count, render-blocking resources, oversized and uncompressed assets, third-party cost |
Names must match exactly. An unrecognised name is rejected with the supported list rather than skipped, so a typo cannot quietly turn a check off and still return a score.
scan_url also returns a metrics block with the measured vitals and the page-weight breakdown, including the slowest requests. Two limits are stated in that block rather than hidden: INP is not measured, because it needs real user interaction, and vitals come from one cold load on the scanning machine, not from field data. Set weightBudget to scan against your own performance budget.
--format markdown opens with the shape of the result, so a human or an agent can see where the problems are before reading a single finding:
Grade: π΄ F (0 / 100) Β· 17 issues found
ββββββββββββββββββββββββ0 / 100
Category Issues Worst Console errors ββββββββββ1π΄ high Accessibility ββββββββββ3π΄ high Security headers ββββββββββ4π medium Cookies and trackers ββββββββββ2π medium Page weight ββββββββββ4π medium
Each bar is scaled to the noisiest category in that run, so the tallest bar is the thing to fix first. When weight runs, the measurements section also attributes the bytes:
Then every finding follows with its severity, a copy-pasteable reproduction, and a suggested fix. Use --format json for the same data as structured output.
| Tool | Local capability | Boundary to review |
|---|---|---|
scan_url | Scan a URL for console, network, link, accessibility, SEO, security-header, cookie/tracker, mixed-content, page-weight, and Core Web Vitals findings, optionally using a Playwright storage-state file. | It makes outbound requests, may read an explicitly selected workspace file containing credentials, and can write a screenshot. |
inspect_page | Return page structure and role/name locator candidates, optionally using a Playwright storage-state file for authenticated pages. | It makes outbound requests and may read an explicitly selected workspace file containing credentials. |
generate_playwright_repro | Write a deterministic, workspace-contained Playwright repro. | It writes below .qmax-mcp/repros; overwrites are explicit. |
run_playwright_test | Execute one local Playwright test and return structured status. | It executes code and writes controlled artifacts; by default it requires an accepted, digest-bound MCP human-approval elicitation. |
The local server does not require an account. Hosted proxy mode is a separate, opt-in connection for account-backed QualityMax capabilities; do not add it unless that capability is needed.
Save a signed-in Playwright context with browserContext.storageState(), keep
that file gitignored, and pass its path relative to the active workspace:
scan_url and inspect_page load the state into a throwaway browser context
before the first navigation and require acknowledgePrivateContent:true as
explicit consent that the result may contain private page content. The path must
resolve to a regular file inside the workspace; absolute paths, traversal,
symlink escapes, and files over 10 MB are rejected. The state path and credential
values are not returned, but findings or inspected page structure may reflect
private account data. Treat both the state file and the tool result accordingly,
and use a dedicated state file containing only the credentials needed by the
inspected application. Playwright storage state covers cookies, local storage,
and optionally IndexedDB; it does not persist session storage.
Copy a ready-made, no-credential configuration and the accompanying instruction file for your client:
| Claude Code | Cursor | Codex | VS Code |
|---|---|---|---|
claude/.mcp.json | cursor/.cursor | codex/.codex/config.toml | vscode/.vscode/mcp.json |
The agent setup guide explains the expected approval surfaces and has a generic stdio configuration. The root AGENTS.md is the portable instruction: collect evidence, report unresolved failures, and request approval before mutating files or executing supplied code unless the server explicitly advertises unattended mode.
For a trusted, isolated automation environment where no human can answer MCP
elicitations, start the server with the explicit --unattended flag:
For Codex TOML, use args = ["-y", "@qualitymax/qmax-mcp", "--unattended"].
This process-start opt-in authorizes every run_playwright_test call handled by
that server; it is intentionally not available as a tool argument or
environment variable. The server advertises the active mode to the agent,
prints an UNATTENDED startup warning, and returns
approval.mechanism: "unattended-cli-opt-in-v1" with each execution. The exact
test is still snapshotted and digest-checked, and the existing workspace,
environment, timeout, cancellation, and output controls remain active.
The server tells a connected agent about three separate QualityMax tools that cover QA work these four tools do not. They are independent programs β qmax-mcp does not install, run, bundle, or proxy any of them, and none needs a QualityMax account. The agent is instructed to name one only when its trigger is present, once, and to leave the decision to run it with you.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/qualitymax-qa-mcp)<a href="https://allmcps.com/mcp/qualitymax-qa-mcp"><img src="https://allmcps.com/api/badge/qualitymax-qa-mcp?style=directory" alt="QualityMax QA MCP on AllMCPs" /></a>