mario-playwright-mcp
Click 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., "@mario-playwright-mcpgo to example.com and show network requests with payloads"
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.
Playwright MCP Mario
Browser MCP for AI agents — based on Microsoft Playwright MCP with extensions for network payload capture and QA workflows.
What is this?
An MCP server that lets LLMs control a browser through accessibility snapshots (no vision models needed). This fork adds network payload capture and sensitive redaction — better for API debugging and QA.
flowchart LR
subgraph Card1["1- Default Playwright"]
D1[Microsoft upstream]
end
subgraph Card2["2- Mario Playwright"]
D2[network payloads · redaction]
end
subgraph Card3["3- Mario agent skills"]
D3[qa-agent · QA workflows]
end
subgraph Runtime[runtime]
direction LR
subgraph BrowserCard["4- Browser"]
Browser[Chromium]
end
subgraph ToolsCard["5- Tools"]
T1[navigate]
T2[click · type]
T3[snapshot · screenshot]
T4[network ++]
end
end
Card1 --> Card2 --> Card3 --> Runtime
BrowserCard --> ToolsCardMCP = bridge that controls the browser and returns snapshots, screenshots, console, network.
Recommended: qa-agent skill for QA workflows.
Mario vs upstream: full payloads, URL filter, sensitive redaction — not just
[POST] url => [200].
Related MCP server: Browser Automation MCP
Quick start
1. Clone and install
git clone https://github.com/YOUR_ORG/mario-playwright-mcp.git
cd mario-playwright-mcp
npm install
npx playwright install chromium2. Configure your MCP client
Cursor (in ~/.cursor/mcp.json or Settings → MCP):
{
"mcpServers": {
"playwright-mcp": {
"command": "node",
"args": [
"/path/to/mario-playwright-mcp/packages/playwright-mcp/cli.js",
"--output-dir",
".mcp-output"
]
}
}
}Output (console logs, screenshots, etc.) goes to .mcp-output/ in the workspace. Add .mcp-output/ to .gitignore to keep the repo clean.
Generic config (VS Code, Claude Desktop, etc.) — use node + path to cli.js as above.
3. Use it
Open a project, start a chat, and use tools like browser_navigate, browser_snapshot, browser_network_requests.
QA Agent skill (recommended)
For QA workflows and structured test reports, use the qa-agent skill — an agent skill for QA engineers that uses this MCP for browser testing, post-action analysis (console + network), and evidence capture.
Tools
All tools the Playwright MCP exposes. ✨ = Mario-enhanced (better in this fork).
Core (always available)
Tool | Description |
| Navigate to a URL |
| Go back |
| Capture accessibility tree (better than screenshot for actions) |
| Take a screenshot |
| Get console logs |
| List network requests — Mario: adds |
| Click an element |
| Type text into an element |
| Hover over an element |
| Drag and drop |
| Fill multiple form fields |
| Select dropdown option |
| Press a key |
| Set viewport size — browser opens at native resolution by default; use to test Mobile (375×667), Tablet (768×1024), Desktop (1920×1080) |
| Run JavaScript on the page |
| Run Playwright code snippet |
| Upload files |
| Accept/dismiss dialogs |
| Wait for text or time |
| List, create, close, or switch tabs |
| Close the browser |
| Install the browser (if missing) |
Opt-in (pass --caps=…)
Capability | Tools |
|
|
|
|
|
|
Extensions (vs upstream)
Network payload capture
browser_network_requests supports:
Param | Description |
| When |
| Filter by URL substring (e.g. |
| Max response body size (default 50KB) |
| Include images, fonts, etc. (default |
Example — get full details for a login call:
browser_network_requests(url: "/login", includePayloads: true)Output:
[POST] https://api.example.com/login => [200] OK
Request headers: { "content-type": "application/json", ... }
Request body: {"email":"user@example.com","password":"***"}
Response headers: { "content-type": "application/json", ... }
Response body: {"token":"***","user":{...}}Sensitive keys (password, token, secret, authorization, cookie, api_key) are redacted as ***.
Workflow
browser_network_requests(includeStatic: false)→ list URLsbrowser_network_requests(url: "/api/endpoint", includePayloads: true)→ headers + bodies for that request
Project structure
mario-playwright-mcp/
├── packages/
│ ├── playwright-mcp/ # MCP server
│ └── extension/ # Browser extension (upstream)
├── patches/ # Network payload patch for Playwright
├── docs/ # Extra docs
│ └── UPSTREAM.md # Update from Microsoft upstream
└── README.mdUpdate from upstream
git remote add upstream https://github.com/microsoft/playwright-mcp.git
git fetch upstream
git merge upstream/main
npm installIf Playwright version changes and the patch fails, re-apply changes in node_modules/playwright/lib/mcp/browser/tools/network.js and run npx patch-package playwright. See docs/UPSTREAM.md.
Requirements
Node.js 18+
MCP client (Cursor, VS Code, Claude Desktop, Goose, etc.)
For client-specific configs (Amp, Cline, LM Studio, etc.) and CLI options, see the upstream README.
Versioning
main — development branch
1.1 — first Mario fork release (network payload capture, .mcp-output, etc.)
1.2, 1.3, … — future releases as changes land
Use semantic versioning: patch for fixes (1.1.1), minor for features (1.2.0).
License
Apache 2.0 — see LICENSE. Based on Microsoft Playwright MCP.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/mariocosttaa/mario-playwright-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server