fetch_url
Fetch a URL and return its main readable content as clean markdown, with options for format, stripping links, and truncation. Useful for reading articles, docs, or pages without boilerplate.
Instructions
Fetch a URL and return its main readable content as clean markdown by default (Readability extraction). Options: format=markdown|text|html|readable, includeLinks=false to strip hyperlinks, maxChars to truncate. Useful for reading a web page, understanding a code/docs page, or getting article content without boilerplate.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Absolute URL to fetch (http/https). | |
| format | No | Output format. 'markdown' = readable article as markdown (default). 'readable' = same but also returns title/excerpt/length. 'text' = stripped text. 'html' = raw HTML. | markdown |
| maxChars | No | Truncate output to this many characters (0/unset = no limit). | |
| includeLinks | No | If false, strip <a> links when converting to markdown/text. |