web_snapshot
Take a snapshot of any webpage and convert it to clean Markdown for AI agents to read, crawl, search, and analyze locally.
Instructions
Read a page as its interactive structure: every button, link and field with its role, accessible name and a short ref such as e12. Use instead of web_fetch when the next step is to click or type, and instead of web_screenshot when a page has to be understood: deterministic, no image, a fraction of the tokens. find keeps only matching nodes, max_depth goes shallower. Returns the nodes; pass a ref to web_act or browser_do so no CSS selector has to be guessed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The page to read. | |
| find | No | Only nodes whose name or role contains this, e.g. "add to cart" or "button". Far fewer tokens when you know what you are looking for. | |
| tier | No | Browser tier: browser, stealth, real (default), warm. | |
| limit | No | Cap on nodes returned. Default 200. | |
| profile | No | Profile saved by web_login whose cookies to use. | |
| timeout | No | Timeout in ms. Default 60000. | |
| max_depth | No | How deep into the page to look. 3 or 4 usually reaches the controls that matter. |