Scrape Web
scrape_webFetch and parse web pages, extracting clean text as markdown or JSON with CSS selectors. Does not execute JavaScript, so use for static or server-rendered pages.
Instructions
Fetch and parse a web page using yusukebe/ax. Returns clean text (markdown by default) or a JSON report. ax is a fast non-browser scraper (linkedom) and does NOT execute JavaScript; for JS-heavy SPAs use a browser tool.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Target URL to scrape. | |
| wait | No | Seconds budget, mapped to ax -m (request timeout). ax has no browser wait. | |
| format | No | Output format: text (markdown/content) or json (structured report). | text |
| selector | No | Optional CSS selector for precise extraction. |