A **Model Context Protocol** server that lets Claude Desktop / Cursor / any MCP client drive your test suite end-to-end: run tests, inspect failures
A Model Context Protocol server that lets Claude Desktop / Cursor / any MCP client drive your test suite end-to-end: run tests, inspect failures (screenshot + video + trace), analyze a live URL to draft test cases, and — after each run. The mcp test runner mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 6 defined tools rather than through you.
newman on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.
Everything the assistant can do here goes through one of these:
API1 — BOLA / IDOR — alice's token reads bob's object via path-id tamperingAPI2 — Broken Authentication — server accepts alg:none, malformed, or wrong-signature JWTsAPI3 — Mass Assignment — server persists dangerous extra fields like role: admin, is_verified: trueAPI5 — Function-Level Authz — non-admin user accesses admin-shaped endpointsAPI8 — Security Misconfiguration — missing HSTS/CSP/X-Frame headers, wildcard CORS with credentialsPrivacy — No screenshot retention beyond the active inspect→solve cycle. Telemetry logs the boolean outcome only — never the screenshot, never the challengeYou will need 8 environment variables: QA_RUNNER, QA_PROJECT_ROOT, QA_OPENAPI_URL, QA_POSTMAN_COLLECTION, QA_VISUAL_CHALLENGE_CONSENT, QA_VISUAL_CHALLENGE_AUTHORIZED_DOMAINS, QA_API_SECURITY_CONSENT, QA_API_SECURITY_AUTHORIZED_DOMAINS. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
This sits in the browser automation group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. MCP Test Runner's toolset — API1, API2, API3 and 3 more — is a fair guide to whether it matches your workflow. It is maintained by kao273183; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| API1 | **BOLA / IDOR** — alice's token reads bob's object via path-id tampering |
| API2 | **Broken Authentication** — server accepts alg:none, malformed, or wrong-signature JWTs |
| API3 | **Mass Assignment** — server persists dangerous extra fields like role: admin, is_verified: true |
| API5 | **Function-Level Authz** — non-admin user accesses admin-shaped endpoints |
| API8 | **Security Misconfiguration** — missing HSTS/CSP/X-Frame headers, wildcard CORS with credentials |
| Privacy | No screenshot retention beyond the active inspect→solve cycle. Telemetry logs the boolean outcome only — never the screenshot, never the challenge text, never the tile selection. The 5-minute LRU cache holds at most 10 o |
{
"mcpServers": {
"mk-qa-master": {
"command": "uvx",
"args": ["mk-qa-master"],
"env": { "QA_RUNNER": "pytest", "QA_PROJECT_ROOT": "/path/to/your-test-project" }
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| QA_RUNNER | Configuration value read at startup. | Optional |
| QA_PROJECT_ROOT | Configuration value read at startup. | Optional |
| QA_OPENAPI_URL | Endpoint or connection string the server talks to. | Yes |
| QA_POSTMAN_COLLECTION | Configuration value read at startup. | Optional |
| QA_VISUAL_CHALLENGE_CONSENT | Configuration value read at startup. | Optional |
| QA_VISUAL_CHALLENGE_AUTHORIZED_DOMAINS | Configuration value read at startup. | Optional |
| QA_API_SECURITY_CONSENT | Configuration value read at startup. | Optional |
| QA_API_SECURITY_AUTHORIZED_DOMAINS | Configuration value read at startup. | Optional |
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
Industrial-strength web extraction — render, scrape, crawl and search entire sites into clean markdown.
The original Chromium automation reference server — simple, screenshot-driven browser control.
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Puppeteer-powered browser control that drives pages from the accessibility tree instead of pixels.
Cloud browsers for AI agents — automation sessions that run in Browserbase's fleet, not on your machine.