Playwright Browser MCP App
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., "@Playwright Browser MCP Appgo to example.com"
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.
Browser MCP App
An MCP App that drives a real Chromium browser with Playwright and renders a live, clickable view of the page inside an MCP host such as Archestra. The agent can browse for you, and you can take over in the panel — click, type, scroll, navigate.
How it works
Browser tools (browser_navigate, browser_click, browser_type, browser_press,
browser_scroll, browser_back/forward/reload, browser_read_page) drive one
shared Playwright page. The UI panel polls an app-only browser_screenshot tool (~1/s),
maps your clicks back to viewport pixels, and forwards your keystrokes — so the model
and you drive the same page.
Related MCP server: Playwright MCP
Setup
npm install
npm run browsers # one-time: download Chromium
npm run build # bundle the UI into dist/mcp-app.htmlRun
npm run serve # HTTP transport on :3001 (npm run dev = watch mode)
npm run serve:stdio # stdio transportTo use it from an MCP host (e.g. Archestra), build first and point the host's MCP config at the stdio entry:
{
"mcpServers": {
"browser": {
"command": "npx",
"args": ["-y", "tsx", "/absolute/path/to/browser-mcp-app/main.ts", "--stdio"]
}
}
}Configuration
Env var | Default | Meaning |
| unset → headed |
|
|
| HTTP port. |
|
| JPEG quality for the live view. |
Development
Built with the create-mcp-app Agent Skill, which covers the MCP Apps SDK patterns
used here (tool + UI-resource registration, app lifecycle, host context, polling). Use
it when extending the server — invoke /create-mcp-app.
Notes
One shared browser page; actions are serialized so calls don't race.
The live view is a screenshot stream — page pixels never go to the model; only
browser_read_pagereturns text, on request.It's a real browser: it can log in and submit forms. Don't point it at sites where an unintended click would be costly.
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.
Related MCP Connectors
Provides cloud browser automation capabilities using Stagehand and Browserbase, enabling LLMs to i…
Headless browser primitives for AI agents when sites need real JS rendering.
Run multi-step tasks in a real Chrome browser: persistent environments, live view, human takeover.
Web search, browser automation, scraping, crawling and CAPTCHA solving for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables browser automation using Playwright, allowing LLMs to interact with web pages, take screenshots, generate test code, scrape web pages, and execute JavaScript in a real browser environment.7,953MIT
- AlicenseNot gradedqualityCmaintenanceProvides browser automation capabilities using Playwright, allowing LLMs to interact with web pages through structured accessibility snapshots without needing screenshots or vision models.2Apache 2.0
- AlicenseNot gradedqualityDmaintenanceProvides browser automation using Playwright, enabling LLMs to interact with web pages, take screenshots, scrape, and execute JavaScript.MIT
- FlicenseAqualityCmaintenanceGives Claude control of a real, headed Chromium browser via Playwright, enabling web navigation, clicking, typing, screenshots, and JavaScript evaluation.8-