scrape_url
Fetch a single web page by URL and extract its content as Markdown, ready for reading or LLM processing.
Instructions
Fetch a single web page and return its content as Markdown.
This is the primary tool for reading web content. Use this when you know which URL contains the information you need.
Best for: Reading documentation pages, articles, blog posts, API references, or any single page where you know the URL.
Not recommended for: When you don't know which page has the info (use map_url first), or when you need content from many pages (use crawl_url).
Args: url: The URL to fetch. render: If true (default), renders JavaScript with a headless browser. Set to false for faster fetch of static pages.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| render | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |