Browser automation

Browser tools work out of the box — no API keys needed. Install browser binaries once:

npx playwright install chromium firefox webkit
# or via the wizard:
tota setup browser
Env VarDescriptionDefault
BROWSER_ENGINEDefault engine: chromium, firefox, or webkitchromium
PLAYWRIGHT_HEADLESSSet to true to run without a visible windowfalse
ToolDescription
browser_openOpen a URL in the browser (visible window by default)
browser_clickClick an element (selector or visible text)
browser_typeType text into an input field (SPA-safe)
browser_keyPress a keyboard key (Enter, Tab, Escape, combos)
browser_waitWait for a CSS selector or navigation
browser_screenshotCapture the current page
browser_extractExtract text / attributes via CSS selector
browser_scrollScroll up, down, left, or right
browser_closeClose the shared browser instance
browser_engineSwitch engine to chromium, firefox, or webkit