Scrape URL as Markdown
scrape_urlExtract clean Markdown content from web pages by removing boilerplate and executing JavaScript for dynamic sites, optimized for AI processing.
Instructions
Fetch a web page and return its main readable content as clean Markdown. Uses Mozilla Readability to strip navigation, footers, ads, and other boilerplate, then converts the article body to Markdown optimized for LLM consumption. Use this instead of web_search when you already know the URL and need to read the full content. Executes JavaScript (headless Chrome) so it handles dynamic / SPA pages.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Full URL to scrape — must include https:// | |
| wait_for | No | CSS selector to wait for before extracting (for JS-heavy pages) | |
| delay | No | Extra ms to wait after load (max 5000) |