QA automation tool for browser testing with MCP server support
QA automation tool for browser testing with MCP server support. That is what the qa use mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.
QA automation CLI for browser testing and E2E test management.
The server ships on npm as npx, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
Configuration is passed through the environment: QA_USE_API_KEY, QA_USE_REGION, QA_USE_API_URL, QA_USE_APP_URL, QA_USE_DEFAULT_APP_CONFIG_ID. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Among the browser automation options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. It is maintained by desplega-ai; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Qa Use's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
{
"mcpServers": {
"qa-use": {
"command": "npx",
"args": ["-y", "npx"],
"env": {
"QA_USE_API_KEY": "your-value",
"QA_USE_REGION": "your-value",
"QA_USE_API_URL": "your-value",
"QA_USE_APP_URL": "your-value",
"QA_USE_DEFAULT_APP_CONFIG_ID": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| QA_USE_API_KEY | Credential the server authenticates with. | Yes |
| QA_USE_REGION | Configuration value read at startup. | Optional |
| QA_USE_API_URL | Endpoint or connection string the server talks to. | Yes |
| QA_USE_APP_URL | Endpoint or connection string the server talks to. | Yes |
| QA_USE_DEFAULT_APP_CONFIG_ID | 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.