playwright-mcp-tabbed
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-mcp-tabbedOpen a new tab, navigate to /orders, and take a snapshot."
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-tabbed

A tab-aware Playwright MCP server for parallel agent workflows.
playwright-mcp-tabbed adds explicit tab_index support to Playwright MCP tools so multiple agents can operate on different tabs while sharing a single browser context and login session.
The Problem
The official @playwright/mcp model is centered around a shared active page. That is perfectly fine for single-agent flows, but it becomes fragile in concurrent workflows:
Agent A selects tab 1
Agent B selects tab 2
Agent A's next action may accidentally run on tab 2
This project removes that shared active-tab assumption. Instead, each tool call can target a tab directly.
Related MCP server: playwright-mcp-orchestrator
Typical Use Cases
playwright-mcp-tabbed is especially useful when browser automation is part of a larger agent workflow.
1. Batch bug fixing
One main agent logs in once, opens several tabs, and assigns one tab_index to each bug-fixing sub-agent. Every sub-agent can reproduce and verify its own issue in parallel without losing authentication state.
2. Multi-route regression checks
After a refactor, different agents can validate /orders, /wallet, /settings, and /users at the same time while staying inside the same logged-in admin session.
3. Side-by-side environment comparison
One tab points to the old app, another to the migrated app, and another to a staging environment. Agents can compare behavior or styling in parallel without repeatedly logging in.
4. Long workflows split across agents
Instead of forcing one agent to serialize a long browser journey, you can split related subflows into dedicated tabs and assign them to separate agents.
How It Works
One browser instance
One shared browser context
Many tabs
Every browser tool call can specify
tab_index
This gives you:
shared cookies and login state
stable routing to the intended tab
better fit for multi-agent orchestration
Key Features
Adds
tab_index(and stabletab_id) to nearly all browser toolsShares login state across tabs through one browser context for the same origin
browser_context_infoexplains open tabs and reminds thatlocalhostvs127.0.0.1use different cookiesOptional
PLAYWRIGHT_MCP_BASE_URLplusbrowser_navigate.base_urlfor relative paths like/dashboardbrowser_snapshotsupportsroot_selectorandmax_charsto limit MCP payload sizebrowser_clicksupportsforce,trial, andtimeout(Playwright semantics)browser_network_requestssupportslimitandurl_containsKeeps tool names close to the official Playwright MCP naming
Works well in Cursor and similar MCP clients
Designed for deterministic parallel agent behavior
Supported Tools
browser_tabsSupportsaction: "list" | "new" | "close";newaccepts optionallabel; list includestab_idper tabbrowser_context_infoJSON summary of tabs, origins, and per-origin storage notebrowser_navigatebrowser_snapshotbrowser_take_screenshotbrowser_run_codebrowser_clickbrowser_typebrowser_fill_formbrowser_file_uploadbrowser_hoverbrowser_select_optionbrowser_press_keybrowser_wait_forbrowser_evaluatebrowser_navigate_backbrowser_network_requestsbrowser_console_messagesbrowser_resizebrowser_dragbrowser_handle_dialogbrowser_closebrowser_install
Tools that target a page accept either tab_index or tab_id (mutually exclusive). Prefer tab_id when sub-agents might race on tab creation order.
{ "tab_index": 1 }{ "tab_id": "550e8400-e29b-41d4-a716-446655440000" }Exceptions (no tab argument): browser_tabs, browser_close, browser_install, browser_context_info.
Environment
PLAYWRIGHT_MCP_BASE_URL— optional default origin for relative URLs inbrowser_navigate(e.g.http://127.0.0.1:3000).PLAYWRIGHT_MCP_RECORD_VIDEO_DIR— optional writable directory for Playwright video recording. When set, each tab/page created in the shared browser context records a video. Video files are finalized when the page or browser context closes.
Differences From Official @playwright/mcp
browser_tabs.selectis intentionally not implementedtab switching is replaced by explicit
tab_indexroutingthe design target is concurrent agent execution, not a shared active-tab interaction model
Quick Start
Install via npm
npm install playwright-mcp-tabbedLocal install
git clone https://github.com/songofhawk/playwright-mcp-tabbed
cd playwright-mcp-tabbed && npm installAdd to Cursor
Add this to ~/.cursor/mcp.json:
{
"mcpServers": {
"playwright-tabbed": {
"command": "node",
"args": ["/absolute/path/to/playwright-mcp-tabbed/dist/index.js"],
"env": {
"PLAYWRIGHT_MCP_RECORD_VIDEO_DIR": "/absolute/path/to/recordings"
}
}
}
}You can keep the official playwright server alongside it and only use playwright-tabbed for concurrent browser tasks.
If you do not need recording, omit env or leave PLAYWRIGHT_MCP_RECORD_VIDEO_DIR unset.
Agent skill: multi-tab orchestration
This repository includes an optional Agent Skill (for Cursor, Claude Code, and similar hosts) that documents how a main agent should create tabs, assign stable tab_ids to parallel sub-agents, and merge results—aligned with this MCP server.
Path in repo:
skills/playwright-tabbed-orchestration/— containsSKILL.mdand helper scriptscripts/resolve-base-url.js.Prerequisite: enable the
playwright-tabbedMCP server in your client (see Add to Cursor).Note: The published npm package includes
dist/andskills/; you can copy fromnode_modules/playwright-mcp-tabbed/skills/playwright-tabbed-orchestrationafter install, or clone / use GitHub subpath (below) so paths stay stable.
What the skill covers
Resolve PLAYWRIGHT_BASE_URL, open N tabs, split URL/scenario lists, spawn N sub-agents (each scoped to one tab_id), then summarize. Full steps, guardrails, and a sub-agent prompt template are in SKILL.md.
Install the skill
Cursor — copy the folder into a skills directory your Cursor version recognizes, for example:
Project-local:
<your-project>/.cursor/skills/playwright-tabbed-orchestration/Or your user-level skills path per current Cursor documentation.
Claude Code — copy to:
<repo>/.claude/skills/playwright-tabbed-orchestration/(or the global skills location described in Anthropic’s docs).
OpenAI Codex — use the Codex skill-installer helper against this repository and the subpath below (adjust --ref if not on main):
python scripts/install-skill-from-github.py \
--repo songofhawk/playwright-mcp-tabbed \
--path skills/playwright-tabbed-orchestrationEquivalent tree URL:
https://github.com/songofhawk/playwright-mcp-tabbed/tree/main/skills/playwright-tabbed-orchestration
Restart Cursor / Codex (or reload skills) after copying or installing.
Helper: resolve-base-url.js
From the skill root:
cd skills/playwright-tabbed-orchestration
node scripts/resolve-base-url.js --helpPrints the site root URL from PLAYWRIGHT_BASE_URL (environment variable and/or git-root .env.local / .env / playwright.env.local). When resolving from project files, run with your terminal cwd on the application repository, or set PLAYWRIGHT_BASE_URL explicitly.
When To Use It
Use playwright-mcp-tabbed when:
you have multiple sub-agents running browser tasks at the same time
you need shared login state across those tasks
you want deterministic browser routing without a shared current-tab pointer
Stay with the official @playwright/mcp when:
you only have one agent
your workflow is strictly sequential
you do not need shared tabs across concurrent tasks
Current Limitation
This project intentionally favors explicit tab routing over active-tab semantics. If your tooling depends on browser_tabs.select, this server is not a drop-in replacement for that specific behavior.
License
MIT
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
- 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/songofhawk/playwright-mcp-tabbed'
If you have feedback or need assistance with the MCP directory API, please join our Discord server