Home/Servers/Playwright MCP Server

Playwright MCP Server

by Microsoft ยท โญ 3.2k stars ยท updated 1 weeks ago

Browser automation using Microsoft Playwright. Navigate pages, interact with elements, capture screenshots, fill forms, and run E2E tests โ€” full cross-browser automation for AI workflows.

91
Excellent

Quality Score Breakdown

maintenance93/100
community90/100
documentation91/100
compatibility90/100

Use Cases

  • โœ“browser automation
  • โœ“e2e testing
  • โœ“web interactions
  • โœ“screenshot capture

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "playwright": {
      "command": "npx",
      "args": [
        "-y",
        "@playwright/mcp"
      ]
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "playwright": {
      "command": "npx",
      "args": [
        "-y",
        "@playwright/mcp"
      ]
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "playwright": {
        "command": "npx",
        "args": [
          "-y",
          "@playwright/mcp"
        ]
      }
    }
  }
}
โ† Back to all servers