Skip to main content
Glama
yeswecan

mcp-playwright-fork

by yeswecan

Playwright MCP Server 🎭

A Model Context Protocol server that provides browser automation capabilities using Playwright. This server enables LLMs to interact with web pages, take screenshots, generate test code, web scraps the page and execute JavaScript in a real browser environment.

Screenshot

Playwright + Claude

Related MCP server: PlayMCP Browser Automation Server

Documentation | API reference

Installation

This fork includes additional smooth mouse control commands not available in the original version. Install this enhanced version:

🎯 Recommended Installation (This Fork with Mouse Commands)

For Claude Code:

claude mcp add --scope user playwright -- npx github:yeswecan/mcp-playwright-fork

For Claude Desktop:

Add this to your MCP configuration:

{
  "mcpServers": {
    "playwright": {
      "command": "npx",
      "args": ["github:yeswecan/mcp-playwright-fork"]
    }
  }
}

Alternative Installation Methods:

# Direct npx usage
npx github:yeswecan/mcp-playwright-fork

# Install globally from GitHub
npm install -g github:yeswecan/mcp-playwright-fork

📦 Original Version Installation

If you prefer the original version without mouse commands:

# Original via npm
npm install -g @executeautomation/playwright-mcp-server

# Original via npx  
npx @executeautomation/playwright-mcp-server

Quick Start

After installation, you can immediately use all Playwright commands plus the new mouse control features:

// New smooth mouse commands
await playwright_mouse_move({ x: 200, y: 200, steps: 10 });
await playwright_smooth_drag({ 
  fromX: 100, fromY: 100, 
  toX: 300, toY: 300, 
  steps: 15, delay: 200 
});

Testing

This project uses Jest for testing. The tests are located in the src/__tests__ directory.

Running Tests

You can run the tests using one of the following commands:

# Run tests using the custom script (with coverage)
node run-tests.cjs

# Run tests using npm scripts
npm test           # Run tests without coverage
npm run test:coverage  # Run tests with coverage
npm run test:custom    # Run tests with custom script (same as node run-tests.cjs)

The test coverage report will be generated in the coverage directory.

Running evals

The evals package loads an mcp client that then runs the index.ts file, so there is no need to rebuild between tests. You can load environment variables by prefixing the npx command. Full documentation can be found here.

OPENAI_API_KEY=your-key  npx mcp-eval src/evals/evals.ts src/tools/codegen/index.ts

Contributing

When adding new tools, please be mindful of the tool name length. Some clients, like Cursor, have a 60-character limit for the combined server and tool name (server_name:tool_name).

Our server name is playwright-mcp. Please ensure your tool names are short enough to not exceed this limit.

Star History

Star History Chart

A
license - permissive license
-
quality - not tested
D
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/yeswecan/mcp-playwright-fork'

If you have feedback or need assistance with the MCP directory API, please join our Discord server