mcp-playwright

mcp-playwright

Enables browser automation for AI assistants via Playwright, supporting multiple browsers, sessions, and tools for web interaction and testing.

Category
Visit Server

README

MCP Playwright

A Model Context Protocol (MCP) server that provides Playwright browser automation capabilities. This package allows AI assistants and other MCP clients to control web browsers, interact with web pages, and perform automated testing tasks.

Features

  • 🌐 Support for multiple browsers (Chromium, Firefox, WebKit)
  • 🔄 Multiple browser session management
  • 📸 Screenshot capture
  • 🖱️ Element interaction (click, fill, etc.)
  • ⏱️ Wait for elements and conditions
  • 📜 JavaScript execution
  • 📄 Page content extraction
  • 🎯 CSS selector and text-based element targeting

Installation

npm install -g mcp-playwright

Or for local development:

npm install mcp-playwright

Usage

As a Standalone Server

mcp-playwright serve

With MCP Client Configuration

Add to your MCP client configuration (e.g., Claude Desktop):

{
  "mcpServers": {
    "playwright": {
      "command": "mcp-playwright",
      "args": ["serve"]
    }
  }
}

Programmatic Usage

import PlaywrightMCPServer from 'mcp-playwright';

const server = new PlaywrightMCPServer();
await server.run();

Available Tools

launch_browser

Launch a new browser instance.

Parameters:

  • browserType (optional): "chromium", "firefox", or "webkit" (default: "chromium")
  • headless (optional): Run in headless mode (default: true)
  • sessionId (optional): Unique session identifier (default: "default")

navigate_to

Navigate to a specific URL.

Parameters:

  • url (required): URL to navigate to
  • sessionId (optional): Browser session ID (default: "default")

click_element

Click on an element using CSS selector or text.

Parameters:

  • selector (required): CSS selector or text content to click
  • sessionId (optional): Browser session ID (default: "default")

fill_input

Fill an input field with text.

Parameters:

  • selector (required): CSS selector for the input field
  • text (required): Text to fill in the input
  • sessionId (optional): Browser session ID (default: "default")

get_text

Get text content from an element.

Parameters:

  • selector (required): CSS selector for the element
  • sessionId (optional): Browser session ID (default: "default")

take_screenshot

Take a screenshot of the current page.

Parameters:

  • path (optional): Path to save the screenshot (default: "screenshot.png")
  • fullPage (optional): Capture full page (default: false)
  • sessionId (optional): Browser session ID (default: "default")

wait_for_element

Wait for an element to appear on the page.

Parameters:

  • selector (required): CSS selector to wait for
  • timeout (optional): Timeout in milliseconds (default: 30000)
  • sessionId (optional): Browser session ID (default: "default")

execute_script

Execute JavaScript code in the browser context.

Parameters:

  • script (required): JavaScript code to execute
  • sessionId (optional): Browser session ID (default: "default")

get_page_source

Get the HTML source of the current page.

Parameters:

  • sessionId (optional): Browser session ID (default: "default")

close_browser

Close a browser session.

Parameters:

  • sessionId (optional): Browser session ID to close (default: "default")

Examples

Basic Web Automation

  1. Launch a browser:
{
  "tool": "launch_browser",
  "arguments": {
    "browserType": "chromium",
    "headless": false,
    "sessionId": "my-session"
  }
}
  1. Navigate to a website:
{
  "tool": "navigate_to",
  "arguments": {
    "url": "https://example.com",
    "sessionId": "my-session"
  }
}
  1. Interact with elements:
{
  "tool": "click_element",
  "arguments": {
    "selector": "button[type='submit']",
    "sessionId": "my-session"
  }
}

Web Scraping

  1. Extract text content:
{
  "tool": "get_text",
  "arguments": {
    "selector": "h1.title",
    "sessionId": "my-session"
  }
}
  1. Take screenshots:
{
  "tool": "take_screenshot",
  "arguments": {
    "path": "./screenshots/page.png",
    "fullPage": true,
    "sessionId": "my-session"
  }
}

Advanced Automation

  1. Execute custom JavaScript:
{
  "tool": "execute_script",
  "arguments": {
    "script": "return document.querySelectorAll('a').length;",
    "sessionId": "my-session"
  }
}
  1. Wait for dynamic content:
{
  "tool": "wait_for_element",
  "arguments": {
    "selector": ".dynamic-content",
    "timeout": 10000,
    "sessionId": "my-session"
  }
}

Multiple Browser Sessions

You can manage multiple browser sessions simultaneously by using different sessionId values:

// Launch first browser
{
  "tool": "launch_browser",
  "arguments": {
    "sessionId": "browser-1",
    "browserType": "chromium"
  }
}

// Launch second browser
{
  "tool": "launch_browser",
  "arguments": {
    "sessionId": "browser-2",
    "browserType": "firefox"
  }
}

Requirements

  • Node.js 18+
  • The package automatically installs Playwright browsers on first use

Development

  1. Clone the repository:
git clone https://github.com/devcodingskill/mcp-playwright.git
cd mcp-playwright
  1. Install dependencies:
npm install
  1. Build the project:
npm run build
  1. Run in development mode:
npm run dev

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT License - see LICENSE file for details.

Troubleshooting

Browser Installation Issues

If you encounter browser installation issues, try:

npx playwright install

Permission Issues

On Linux/macOS, you might need to install additional dependencies:

npx playwright install-deps

Memory Issues

For large-scale automation, consider:

  • Using headless mode
  • Closing browser sessions when done
  • Managing multiple sessions carefully

Security Considerations

  • This tool provides powerful browser automation capabilities
  • Be cautious when executing untrusted JavaScript code
  • Consider running in isolated environments for production use
  • Review and sanitize any user-provided selectors or scripts

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured