Navigate:
Playwright MCP
~$PLAY1.9%

Playwright MCP: Browser automation via Model Context Protocol

Accessibility tree-based browser automation for LLMs.

LIVE RANKINGS • 10:20 AM • STEADY
TOP 25TOP 25TOP 25TOP 25TOP 25TOP 25TOP 25TOP 25TOP 25TOP 25TOP 25TOP 25
OVERALL
#21
5
DEVELOPER TOOLS
#4
1
30 DAY RANKING TREND
ovr#21
·Devel#4
STARS
27.8K
FORKS
2.2K
7D STARS
+530
7D FORKS
+31
See Repo:
Share:

Learn more about Playwright MCP

Playwright MCP is a Model Context Protocol server that exposes browser automation functionality to LLMs and AI agents. It uses Playwright's accessibility tree to represent page state as structured data, eliminating the need for screenshot analysis or vision models. The server operates deterministically by parsing the accessibility tree into actionable elements, reducing ambiguity in tool application. It runs on Node.js 18+ and integrates with various MCP clients including VS Code, Cursor, Claude Desktop, and other compatible environments.

Playwright MCP

1

Accessibility Tree Protocol

Exposes browser state as structured accessibility data instead of screenshots. LLMs parse semantic elements directly without vision models, enabling deterministic automation through well-defined DOM properties.

2

Deterministic Element Targeting

Operates on explicit accessibility semantics with defined roles and states. Eliminates ambiguity inherent in pixel-based approaches where visual interpretation can vary across models.

3

Multi-Client MCP Integration

Standard Model Context Protocol implementation works across VS Code, Cursor, Claude Desktop, and Goose. Single configuration enables browser automation in any compatible MCP client.


import { MCPClient } from '@modelcontextprotocol/sdk/client/index.js';

const client = new MCPClient();
await client.connect();

// Navigate to a website and click a button
await client.callTool('playwright_navigate', { url: 'https://example.com' });
await client.callTool('playwright_click', { selector: 'button[aria-label="Sign In"]' });

See how people are using Playwright MCP

Loading tweets...


[ EXPLORE MORE ]

Related Repositories

Discover similar tools and frameworks used by developers