Scrape URL to Markdown
scrape_urlFetch any web page and extract its main content as clean, readable Markdown, removing navigation, ads, and other clutter for direct use in LLM workflows.
Instructions
Fetch any web page and return its main content as clean, readable Markdown. Strips out navigation, ads, cookie banners, scripts, and other boilerplate. Ideal for feeding article or documentation content to an LLM.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The full URL of the web page to scrape (must start with http:// or https://). | |
| renderJs | No | Render the page in a real browser first (default false). Use for sites whose content is built by JavaScript. Requires Playwright to be installed. | |
| includeLinks | No | Keep hyperlinks in the output (default true). Set to false for cleaner plain prose. |