QualityMax QA MCP
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@QualityMax QA MCPScan the page I just changed at https://example.com and show the QA report"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
QualityMax QA MCP
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.
npx -y @qualitymax/qmax-mcpThe four local tools require no QualityMax account, API key, or hosted service.
Start with a useful result
Ask an MCP-enabled agent to scan the URL it changed, or run the local CLI:
npx -y @qualitymax/qmax-mcp scan https://example.com --format markdownThe 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.
What one scan measures
All nine checks run off a single page load. Pass checks to run a subset.
Check | What it reports |
| JavaScript errors, warnings, and failed requests |
| Broken and redirecting links, up to |
| Missing alt text, unlabelled controls, nameless interactive elements, heading structure |
| Core Web Vitals: LCP, CLS, TTFB, FCP |
| Title and meta description |
| CSP, HSTS, |
| Missing |
| HTTP subresources and form actions on an HTTPS page, split into browser-blocked active and passive |
| Transfer bytes, request count, render-blocking resources, oversized and uncompressed assets, third-party cost |
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.
What the report looks like
--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:
script โโโโโโโโโโโโโโโโ 18 kB
document โโโโโโโโโโโโโโโโ 3 kB
stylesheet โโโโโโโโโโโโโโโโ 1 kB
image โโโโโโโโโโโโโโโโ 417 BThen every finding follows with its severity, a copy-pasteable reproduction, and a suggested fix. Use --format json for the same data as structured output.
Related MCP server: Playwright MCP Server
What the agent can do
Tool | Local capability | Boundary to review |
| Scan a URL for console, network, link, accessibility, SEO, security-header, cookie/tracker, mixed-content, page-weight, and Core Web Vitals findings. | It makes outbound requests and can write a screenshot. |
| Return page structure and role/name locator candidates. | It makes outbound requests. |
| Write a deterministic, workspace-contained Playwright repro. | It writes below |
| 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.
Add it to your coding agent
Copy a ready-made, no-credential configuration and the accompanying instruction file for your client:
Claude Code | Cursor | Codex | VS Code |
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.
Unattended automation
For a trusted, isolated automation environment where no human can answer MCP
elicitations, start the server with the explicit --unattended flag:
{
"mcpServers": {
"qmax": {
"command": "npx",
"args": ["-y", "@qualitymax/qmax-mcp", "--unattended"]
}
}
}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.
Adjacent QualityMax tools
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.
Tool | Command | Reach for it when |
9lives (MIT) |
| A Playwright spec that used to pass is red after a change and the failure looks like drift. Heal the locator instead of weakening the assertion. |
qualitymax-grader (Apache-2.0) |
| A spec is about to be committed, or a suite is judged on test quality rather than on passing. Offline A-F grade, no model or network. |
free-qa-skills (Apache-2.0) | install from skills.sh | The QA request is about a repository rather than a running URL, or the agent has no MCP server available. |
Together with the local tools they form one loop: scan_url finds the failure, generate_playwright_repro writes the spec, qualitymax-grader scores it before it lands, run_playwright_test executes it under the server's selected authorization mode, and 9lives heals it when a later change makes it drift.
Safety and honest limits
Local scanning is networked. Private targets are denied by default;
allowPrivateNetwork: trueis only deliberate caller-side consent for a narrow loopback target.Generated repros stay in a controlled workspace directory. Test runs use a minimal environment and controlled artifact directory.
By default,
run_playwright_testuses MCP form elicitation before execution. The server displays the target, side effects, and a SHA-256 digest to the client, and runs only after the client returns an accepted human approval for that exact digest. Clients without form-elicitation support fail closed; a bare caller-supplied boolean is not accepted as proof.--unattendedis the explicit process-level exception for isolated automation and permits supplied code to run with the local user's filesystem and network permissions without another human prompt.Read the full MCP safety contract and security threat model before publishing or enabling hosted capabilities.
Architecture
The launch comparison records dated, first-party capability references for TestSprite, BrowserStack, mabl, and Momentic. It is a factual boundary comparison, not a ranking.
Hosted proxy mode
The local tools are the open, local-first layer. Hosted QualityMax is an explicit proxy for workspace-backed project, test-case, script, and observability workflows:
QUALITYMAX_API_KEY="<your-api-key>" npx -y @qualitymax/qmax-mcp proxyOnly configure the proxy when a hosted-only capability is needed. The bearer credential is sent only to the pinned https://app.qualitymax.io/api/mcp/ endpoint; endpoint overrides and redirects are refused.
Support and responsible disclosure
Use GitHub Issues for non-sensitive usage and documentation support. Do not report vulnerabilities in a public issue; follow the repository security policy. The launch checklist includes the owner checks required before any public announcement.
Development
The runtime requires Node 22.13.0 or newer.
npm install
npx playwright install chromium
npm run check
npm run demonpm run demo starts a dependency-free local fixture, prints a Markdown quality receipt by default, and leaves its generated repro and Playwright artifacts under .qmax-mcp/ for inspection. Use npm run demo -- --format json for a machine-readable receipt.
Candidate work after 0.4.0 โ and the boundaries it has to respect โ is recorded in the roadmap. It is a direction, not a delivery commitment; shipped changes are listed in the changelog.
Package and release metadata
server.json is the canonical MCP Registry manifest. npm run validate:registry checks it against the official schema without publishing anything. Use npm run version:sync -- <semver> to move every public metadata surface โ package.json, package-lock.json, server.json, smithery.yaml and src/metadata.ts โ together; npm run check verifies they agree and fails on drift, and npm publish is restricted to the provenance-backed release workflow. The release workflow and rollback procedure are documented in the release runbook.
License
MIT โ Copyright (c) 2026 QualityMax.
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
- AlicenseAqualityFmaintenanceEnables AI assistants to inspect, debug, and test web pages using Playwright. Provides comprehensive DOM inspection, visibility debugging, layout validation, and element finding capabilities in real browser environments.34923MIT
- FlicenseNot gradedqualityDmaintenanceEnables web browser automation and inspection using structured data instead of screenshots, allowing AI agents to interact with web pages programmatically through the Playwright framework.
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to control web browsers through Playwright automation, providing 50+ tools for navigation, interaction, testing, accessibility audits, and visual testing across Chromium, Firefox, and WebKit.10MIT
- AlicenseNot gradedqualityBmaintenanceEnables autonomous web QA by exposing Playwright browser control as MCP tools for navigation, accessibility snapshotting, interaction, and bug detection.3MIT
Related MCP Connectors
Browser-backed QA with evidence and fix-ready reports for coding agents.
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.
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/Quality-Max/qmax-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server