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 Servers
- Alicense-qualityCmaintenanceEnables 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.19,860MIT
- Alicense-qualityDmaintenanceProvides 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
- Alicense-qualityDmaintenanceProvides browser automation capabilities using Playwright, allowing LLMs to interact with web pages through structured accessibility snapshots.6,659,312Apache 2.0
- Alicense-qualityDmaintenanceProvides browser automation through Playwright, enabling LLMs to interact with web pages using structured accessibility snapshots instead of screenshots.6,659,312Apache 2.0
Related MCP Connectors
Provides cloud browser automation capabilities using Stagehand and Browserbase, enabling LLMs to i…
Hosted real Google Chrome MCP with per-user persistent state. Navigate, click, type, screenshot.
E2LLM gives your AI eyes and hands in a real browser: structured perception (SiFR) plus action.
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/archestra-ai/browser-mcp-app'
If you have feedback or need assistance with the MCP directory API, please join our Discord server