scrape_page
Scrape a single web page and extract content in markdown, text, or HTML. Strip navigation and ads, include links, and choose between HTTP or browser rendering.
Instructions
Scrape a single URL and return extracted content (no browser session needed).
Args: url: Target URL. format: "markdown" (default), "text", or "html". main_content: Strip nav/footer/ads boilerplate. include_links: Include discovered links in the result. render: None/"auto" (auto-detect, SPA fallback), "http" (no browser, cheapest), or "browser" (force full browser render). timeout_ms: Page fetch timeout in milliseconds.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| format | No | markdown | |
| main_content | No | ||
| include_links | No | ||
| render | No | ||
| timeout_ms | No |