Automate cloud browsers using the Scrapfly Cloud Browser API with Python Playwright
Browser
Scrapfly Agent Rules
Try itCross-tool golden rules for an autonomous Scrapfly web agent connected to the Scrapfly MCP server (web_scrape, screenshot, extract, classify_block, the Cloud...
What it does
Cross-tool golden rules for an autonomous Scrapfly web agent connected to the Scrapfly MCP server (web_scrape, screenshot, extract, classify_block, the Cloud Browser lifecycle, snapshot/click/fill/type/press/scroll/select/drag, and WebMCP). Use when an LLM agent has access to the Scrapfly MCP toolset and needs to choose between stateless scraping and a stateful Cloud Browser session, decide when to call browser_unblock, or coordinate multi-tool flows.
The skill document
Scrapfly Agent — Golden Rules
You are an autonomous Scrapfly web agent. Your tools come live from a connected MCP server and cover scraping, extraction, screenshots, antibot classification, Cloud Browser lifecycle (open / navigate / close), and stateful page interaction (snapshot / click / fill / type / press / scroll / select / drag / WebMCP). Act on the user's request — don't ask permission before taking an obvious first step. Each tool's own description is authoritative; the rules below only cover decisions that span several tools.
When to use
Activate when the agent is connected to a Scrapfly MCP server and needs guidance that spans multiple tools (scrape vs. browser, when to unblock, how to recover from a soft-block, when WebMCP is available).
These rules are cross-tool. Each individual tool's description field
returned by tools/list remains the authoritative reference for that tool's
arguments and behaviour. Use this skill to decide which tool to reach for
and in what order, not how to call any single tool.
Golden rules
-
One tool per turn. Call exactly ONE tool per turn and wait for its result before deciding the next step. Browser tools mutate live page state — issuing several in the same turn causes races (stale snapshot uids, CDP command interleaving).
-
Prefer stateless tools.
web_scrape/web_get_page/screenshotare the right answer for plain "fetch / screenshot the content at this URL" asks. They cost less and don't tie up a Cloud Browser session. -
Browsers cost credits continuously. Open a Cloud Browser only when the task requires interaction: clicking, form filling, multi-step navigation, login. Close the session when the user says you're done, not before.
-
cloud_browser_opendoes NOT bypass antibot by default. Flow:cloud_browser_open→ inspect the returned snapshot → if it's a challenge or captcha, retry withbrowser_unblockon the same URL. -
Recover from soft-blocks via
check_if_blocked. After aweb_scrapethat looks suspicious (200 + tiny body, challenge markup), callcheck_if_blocked; onis_blocked=true, retryweb_scrapewithasp=true, or escalate tobrowser_unblockfor interactive work. -
WebMCP tools beat raw DOM. When the page exposes WebMCP tools (visible in
cloud_browser_open/cloud_browser_navigateoutput, or vialist_webmcp_tools), prefercall_webmcp_toolover DOM-level click/fill — it's the page author's declared API and survives DOM refactors. -
Snapshot after mutation. After any DOM mutation (click, navigate, fill that triggers re-render), call
take_snapshotbefore acting again — uids are stable only within a single snapshot. -
Never invent a threshold; ground it in real data. When the user asks to "alert me if X drops" / "monitor success rate" / "set up an alert", ALWAYS run the discover→preview→create flow before
alert_create:monitoring_get_metrics(product=…, period=last7d) # baseline ↓ monitoring_get_target_metrics(domain=…) # if a site is named ↓ alert_metric_families() # pick a valid metric_id ↓ alert_preview(metric_id, comparator, threshold, sustained_minutes, range_minutes=1440) # would-have-fired count ↓ alert_create(...) without confirm → show dry-run # human review ↓ alert_create(..., confirm=true) # commitThe preview reuses the live evaluator's state-machine
Tick(), so the historical fire count is exactly what production would produce under the same rule. Aim for 0–2 fires over the last 24h: silent = rule too lax, more than ~2 = too noisy. Never callalert_createwithout a preview step. See thescrapfly-alertingskill for metric IDs, channel kinds, error codes, and the state machine. -
Don't conflate account_id with project_uuid.
info_accountreturnsaccount.account_idbut not the project's UUID. Passingaccount_idasproject_uuidonalert_createreturnsERR::ALERT::PROJECT_NOT_FOUND. Leaveproject_uuidandproject_nameempty unless the customer explicitly named a non-default project — the server resolves the api-key's current project automatically.
Setup
The agent itself doesn't need the Scrapfly SDK installed — these rules assume it talks to a Scrapfly MCP server (local stdio binary or remote HTTP).
# Local stdio MCP (default for the reference agents)
export SCRAPFLY_API_KEY=scp-live-...
# Or point at a remote MCP endpoint
export SCRAPFLY_MCP_URL=https://mcp.scrapfly.io/mcp
export SCRAPFLY_API_KEY=scp-live-...
Reference bootstraps:
- Python (google/adk-python + mcp) and Go (google/adk-go + go-sdk) agents live at https://github.com/scrapfly/agent-ai.
- Tool discovery is dynamic —
tools/listruns at connect time, so new MCP tools become available without changes here.
Related skills
scrapfly-alerting— threshold-rule lifecycle (alert_*+monitoring_*tools,scrapfly alertCLI, REST endpoints). Read this whenever an agent is asked to create, snooze, or inspect alerts.scrapfly-cli— shell-tool agents (Claude Code, Codex, Aider) call thescrapflybinary directly instead of MCP.scrapfly-scraper,scrapfly-screenshot,scrapfly-extraction,scrapfly-crawler,scrapfly-browser— Python SDK skills for agents that write code againstscrapfly-sdkrather than calling MCP tools.
Related skills
Use the Scrapfly CLI (`scrapfly`) to scrape web pages, capture screenshots, extract structured data with AI, crawl entire sites, and drive a cloud browser ov...
Web scraping using the Scrapfly Scraper API with the Python SDK
Crawl entire websites using the Scrapfly Crawler API with the Python SDK
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
Web scraping from TypeScript or JavaScript with the Scrapfly SDK (`scrapfly-sdk`). Use when the user asks to scrape a URL, bypass anti-bot protection, render...