Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from bundle
Skill for Browser Use CLI local automation, real-browser mode, sessions, cloud/platform flows, and tested command patterns.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/cloud-and-platform.md
1# Browser Use Cloud and Platform Notes23Use this reference when the task is about Browser Use cloud, not just local browser control.45## Authentication67Browser Use cloud commands require API auth.89Core command:1011```bash12browser-use cloud login <api-key>13```1415Alternative:16- use `BROWSER_USE_API_KEY`1718## Cloud browser flow1920```bash21browser-use cloud connect22browser-use state23browser-use close24```2526## REST passthrough2728Examples:2930```bash31browser-use cloud v2 GET /browsers32browser-use cloud v2 POST /tasks '{"task":"Search for AI news","url":"https://google.com"}'33browser-use cloud v2 poll <task-id>34```3536Use this for:37- tasks38- cloud browsers39- profiles40- workspaces41- files42- billing/platform objects exposed by Browser Use API4344## Tunnels4546Use tunnels when a cloud browser must reach localhost.4748```bash49browser-use tunnel 300050browser-use tunnel list51browser-use tunnel stop 300052browser-use tunnel stop --all53```5455Typical flow:56571. start local dev server582. create tunnel593. connect cloud browser604. open tunneled URL6162## Profiles6364The CLI can sync or manage profiles for cloud usage.65Commands include:6667```bash68browser-use profile list69browser-use profile sync --all70browser-use profile auth --apikey <key>71```7273## MCP mode7475The CLI also supports stdio MCP mode:7677```bash78browser-use --mcp79```8081Use this when another agent/client should drive Browser Use as an MCP server.82