Browser automation via Playwright MCP. Use for web scraping, taking screenshots, interacting with web pages, testing web UIs, and automating browser tasks. Headless browser support.
/plugin marketplace add plurigrid/asi/plugin install asi-skills@asi-skillsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Control browsers via Playwright MCP server.
MCP server configured in ~/.mcp.json:
{
"playwright": {
"command": "npx",
"args": ["-y", "@anthropic-ai/mcp-server-playwright"]
}
}
navigate_page - Go to a URLnew_page - Open new browser tablist_pages - Show open pagesclick - Click elementsfill - Type into input fieldsselect - Choose from dropdownspress - Press keyboard keystake_screenshot - Screenshot current pageget_page_content - Get page HTMLget_text - Extract visible textevaluate - Run JavaScript in page contextnavigate_page(url="https://example.com")take_screenshot()navigate_page(url="https://example.com/form")fill(selector="#email", value="user@example.com")fill(selector="#password", value="secret")click(selector="button[type=submit]")navigate_page(url="https://example.com/data")get_text(selector=".results")