alexrwilliam/playwright-mcp-server
If you are the rightful owner of playwright-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Playwright MCP Server is a minimal and robust server that provides core browser automation capabilities through a simple API.
Navigation & Page Control
Tools for navigating and controlling web pages.
Element Interaction
Tools for interacting with web elements.
Form Handling
Tools for managing form elements.
Element Discovery & Validation
Tools for discovering and validating web elements.
Content & Snapshots
Tools for capturing content and snapshots.
JavaScript & Debugging
Tools for executing JavaScript and debugging.
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
- Raw Output: All outputs are raw Playwright results with no post-processing
Installation
Quick Install from GitHub
# Install directly from GitHub
pip install git+https://github.com/alexrwilliam/playwright-mcp-server.git
# Install Playwright browsers
playwright install
For Development
# Clone the repository
git clone https://github.com/alexrwilliam/playwright-mcp-server.git
cd playwright-mcp-server
# Install in development mode
pip install -e .
# Install browsers
playwright install
Usage
Running the Server
After installation, you can use it from anywhere:
# Run with stdio transport (for MCP clients)
playwright-mcp stdio
# Run with HTTP transport
playwright-mcp http --port 8000
# Run in headed mode (default is headless)
playwright-mcp stdio --headed
Command Line Usage
# Run the MCP server
playwright-mcp stdio
# Run with visible browser
playwright-mcp stdio --headed
# Run HTTP server
playwright-mcp http --port 8000
# Use different browsers
playwright-mcp stdio --browser firefox
playwright-mcp stdio --browser webkit
Integration with Claude Desktop
Add to your claude_desktop_config.json
:
{
"mcpServers": {
"playwright": {
"command": "playwright-mcp",
"args": ["stdio"]
}
}
}
Testing with MCP Inspector
# Install and run MCP inspector
uv run mcp dev src/playwright_mcp/server.py
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
Configuration
The server accepts the following configuration options:
--headed
/--headless
- Run browser in headed or headless mode--browser
- Browser type (chromium, firefox, webkit)--port
- Port for HTTP transport--timeout
- Default timeout for operations (ms)
Development
# Clone the repository
git clone <repo-url>
cd playwright-mcp
# Install dependencies
uv sync --dev
# Run tests
uv run pytest
# Format code
uv run black src/
uv run ruff check src/
# Type check
uv run mypy src/
License
MIT