README.md
Enables AI assistants to control a web browser via Playwright on Cloudflare
Workers for automated tasks like navigation, clicking, typing, and taking screenshots. It integrates with platforms like Claude Desktop and GitHub Copilot to perform web automation through a standardized toolset.
Tools (4)
navigateNavigate to a specific URL in the browser.clickClick on a specific element on the page using a selector.typeType text into an input field identified by a selector.screenshotTake a screenshot of the current page.Configuration
claude_desktop_config.json
{
"mcpServers": {
"cloudflare-playwright": {
"command": "npx",
"args": ["-y", "@adityahannn-hub/playwright-mcp-example"]
}
}
}Try it
→Navigate to https://example.com and take a screenshot of the homepage.
→Go to the login page, type 'myusername' into the username field, and click the submit button.
→Open Wikipedia, search for 'Model Context Protocol', and show me the result page.
→Navigate to a news site and take a screenshot of the top headlines.