cursor-ide-browser-skills
Installation
SKILL.md
Cursor IDE Browser Automation
Browser automation tool for Cursor IDE using MCP (Model Context Protocol) server cursor-ide-browser and accessibility snapshots for precise element interaction.
Core Mechanism
Accessibility Snapshot First: Always get a snapshot before interacting with elements. The snapshot provides structured page information with element references (ref) needed for all interactions.
// Standard workflow
browser_navigate(url="https://example.com")
browser_snapshot() // Required: Get element references
browser_click(element="Button", ref="ref-from-snapshot")