|
|
| MseeP.ai Security Assessment | Special thanks to Warp, the AI terminal for developers |
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.
This fork includes additional smooth mouse control commands not available in the original version. Install this enhanced version:
claude mcp add --scope user playwright -- npx github:yeswecan/mcp-playwright-forkAdd this to your MCP configuration:
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": ["github:yeswecan/mcp-playwright-fork"]
}
}
}# Direct npx usage
npx github:yeswecan/mcp-playwright-fork
# Install globally from GitHub
npm install -g github:yeswecan/mcp-playwright-forkIf 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-serverAfter 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
});This project uses Jest for testing. The tests are located in the src/__tests__ directory.
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.
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.tsWhen 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.
