Support for browser extensions like AdBlock when using real Chrome with a user profile, enabling content filtering during browser automation
Support for Firefox browser automation through Playwright, enabling web interactions, DOM manipulation, and page automation
Support for using real Chrome browser instead of bundled Chromium, including access to Chrome-specific features, codecs, extensions, and user profiles
Playwright MCP Server
A minimal, robust Playwright MCP (Model Context Protocol) server that exposes core browser automation capabilities via a simple API.
Features
- Browser Context Management: Persistent browser context (headless or headed, configurable)
- Navigation: Open URLs, reload, go back/forward
- DOM Interaction: Click, type, fill, select, hover, scroll using Playwright selectors
- Element Discovery: Query elements using CSS, XPath, role, text, and other Playwright locators
- Snapshotting: Get HTML, accessibility snapshots, screenshots, and PDFs
- Script Evaluation: Run JavaScript in the page context
- Network Monitoring: Capture and analyze all network requests and responses
- Network Interception: Block, modify, or mock network requests
- Cookie Management: Get, set, and clear browser cookies
- Storage Access: Manage localStorage and sessionStorage data
- Headers & User Agent: Customize request headers and browser identity
- Raw Output: All outputs are raw Playwright results with no post-processing
Installation
Quick Install from GitHub
For Development
Usage
Running the Server
After installation, you can use it from anywhere:
Command Line Usage
Integration with Claude Desktop
Add to your claude_desktop_config.json
:
Testing with MCP Inspector
API Reference
Tools
Navigation & Page Control
navigate(url: str)
- Navigate to a URLreload()
- Reload the current pagego_back()
- Go back in historygo_forward()
- Go forward in historywait_for_url(url_pattern: str, timeout: int)
- Wait for URL to match patternwait_for_load_state(state: str, timeout: int)
- Wait for page load states (domcontentloaded, load, networkidle)set_viewport_size(width: int, height: int)
- Set viewport dimensions
Element Interaction
click(selector: str)
- Click an elementtype_text(selector: str, text: str)
- Type text into an elementfill(selector: str, value: str)
- Fill an input fieldclear_text(selector: str)
- Clear input field textselect_option(selector: str, value: str)
- Select an optionhover(selector: str)
- Hover over an elementscroll(selector: str, x: int, y: int)
- Scroll elementpress_key(key: str)
- Press keyboard key
Form Handling
check_checkbox(selector: str)
- Check a checkboxuncheck_checkbox(selector: str)
- Uncheck a checkboxupload_file(selector: str, file_path: str)
- Upload file to input
Element Discovery & Validation
query_selector(selector: str)
- Query for single elementquery_selector_all(selector: str)
- Query for all matching elementsis_visible(selector: str)
- Check if element is visibleis_enabled(selector: str)
- Check if element is enabledwait_for_element(selector: str, timeout: int)
- Wait for element to appearget_element_bounding_box(selector: str)
- Get element position and sizeget_element_attributes(selector: str)
- Get all element attributesget_computed_style(selector: str, property: str)
- Get CSS computed style
Content & Snapshots
get_html()
- Get page HTMLget_accessibility_snapshot()
- Get accessibility treescreenshot(selector: str, full_page: bool)
- Take screenshot of page or elementpdf()
- Generate PDF of page
JavaScript & Debugging
evaluate(script: str)
- Execute JavaScript in page contextwait_for_network_idle(timeout: int)
- Wait for network activity to settleget_page_errors()
- Get JavaScript errors from pageget_console_logs()
- Get console output from page
Network Monitoring & Interception
get_network_requests(url_pattern: str)
- Retrieve captured network requests with filteringget_network_responses(url_pattern: str)
- Retrieve captured network responses with filteringclear_network_logs()
- Clear all captured network request/response logsintercept_route(url_pattern: str, action: str, ...)
- Intercept and handle network requestsunroute_all()
- Remove all route interceptorswait_for_response(url_pattern: str, timeout: int)
- Wait for specific network responsesget_response_body(url_pattern: str)
- Extract response body content from network calls
Cookie Management
get_cookies(urls: List[str])
- Retrieve browser cookies with optional URL filteringadd_cookies(cookies: List[Dict])
- Add cookies to browser contextclear_cookies(name: str, domain: str)
- Clear cookies with optional filtering
Storage Management
get_local_storage(origin: str)
- Access localStorage dataset_local_storage(key: str, value: str)
- Set localStorage itemsget_session_storage()
- Access sessionStorage dataset_session_storage(key: str, value: str)
- Set sessionStorage itemsclear_storage(storage_type: str)
- Clear localStorage and/or sessionStorage
Request Headers & Identity
set_extra_headers(headers: Dict)
- Add custom HTTP headers to all requestsset_user_agent(user_agent: str)
- Change browser User-Agent string
Configuration
The server accepts the following configuration options:
--headed
/--headless
- Run browser in headed or headless mode--browser
- Browser type (chromium, firefox, webkit)--channel
- Browser channel (chrome, chrome-beta, msedge, etc.) for real browsers--user-data-dir
- Path to browser profile directory for persistent context--port
- Port for HTTP transport--timeout
- Default timeout for operations (ms)
Real Chrome vs Bundled Chromium
By default, Playwright uses bundled Chromium. For web scraping that requires real Chrome features:
Use --channel chrome
to use your installed Google Chrome:
- Access to all Chrome features and codecs
- Better compatibility with some websites
- Chrome-specific behaviors
Use --user-data-dir
to access your real profile:
- All your cookies and login sessions
- Browser extensions (AdBlock, etc.)
- Browsing history and autofill data
- Bookmarks and saved passwords
Example for macOS:
Example for Linux:
Development
License
MIT
This server cannot be installed
A minimal server that exposes Playwright browser automation capabilities through a simple API, enabling webpage interaction, DOM manipulation, and content extraction via the Model Context Protocol.
Related MCP Servers
- AsecurityFlicenseAqualityA server that enables browser automation using Playwright, allowing interaction with web pages, capturing screenshots, and executing JavaScript in a browser environment through LLMs.Last updated -1210,4751TypeScript
- -securityFlicense-qualityProvides a server utilizing Model Context Protocol to enable human-like browser automation with Playwright, allowing control over browser actions such as navigation, element interaction, and scrolling.Last updated -7TypeScript
- AsecurityAlicenseAqualityA browser automation server providing Playwright capabilities for controlling web browsers, capturing screenshots, extracting content, and performing complex interactions through an MCP interface.Last updated -6PythonApache 2.0
- AsecurityAlicenseAqualityA Model Context Protocol server that provides browser automation capabilities using Playwright, enabling LLMs to interact with web pages, take screenshots, generate test code, scrape web content, and execute JavaScript in real browser environments.Last updated -3110,475TypeScriptMIT License