MCP Server Playwright is a Model Context Protocol server that enables large language models to interact with web browsers in real-time. It provides comprehensive browser automation capabilities through Playwright, allowing LLMs to navigate websites, capture screenshots, fill forms, and execute JavaScript in a real browser environment. This tool bridges the gap between AI language models and web interfaces, making it possible for AI assistants to perform complex web-based tasks that would otherwise require human intervention. With its robust feature set and easy integration with Claude and other LLM platforms, MCP Server Playwright significantly enhances the capabilities of AI assistants for web-based workflows.
MCP Server Playwright provides browser automation capabilities for large language models through the Model Context Protocol. It allows AI assistants to interact with web pages, take screenshots, and execute JavaScript in a real browser environment.
The easiest way to install MCP Server Playwright for Claude Desktop is via Smithery:
npx -y @smithery/cli install @automatalabs/mcp-server-playwright --client claude
You can also install using npx directly:
npx @automatalabs/mcp-server-playwright install
Or using mcp-get:
npx @michaellatman/mcp-get@latest install @automatalabs/mcp-server-playwright
The installation process will:
The configuration file will be automatically created/updated at:
%APPDATA%\Claude\claude_desktop_config.json
~/Library/Application Support/Claude/claude_desktop_config.json
The installation process automatically adds the following configuration to your Claude config file:
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": ["-y", "@automatalabs/mcp-server-playwright"]
}
}
}
Navigate to any URL in the browser.
{
"url": "https://example.com"
}
Capture screenshots of the entire page or specific elements.
{
"name": "screenshot-name", // required
"selector": "#element-id", // optional
"fullPage": true // optional, default: false
}
Click elements on the page using CSS selector.
{
"selector": "#button-id"
}
Click elements on the page by their text content.
{
"text": "Click me"
}
Hover over elements on the page.
{
"selector": "#element-id"
}
Type text into input fields.
{
"selector": "#input-field",
"text": "Hello world"
}
Extract text content from elements.
{
"selector": "#content"
}
Get the HTML content of elements.
{
"selector": "#content"
}
Execute JavaScript in the browser context.
{
"code": "return document.title;"
}
Wait for page navigation to complete.
{
"timeout": 30000 // optional, default: 30000 (30 seconds)
}
Wait for an element to appear on the page.
{
"selector": "#element-id",
"timeout": 30000 // optional, default: 30000 (30 seconds)
}
Retrieve console logs from the browser.
{}