beacon_fetch
Fetch a URL and extract its main readable text as plain text, stripping navigation, ads, and boilerplate. Optionally truncate to a character limit.
Instructions
Fetch a URL and return its main readable text content.
Extracts the article/page body (drops navigation, ads, boilerplate). Returns plain text, not HTML.
Args: url: An http(s) URL. max_chars: Truncate content to protect context budget (default 8000).
Returns: {"url", "title", "content"} or None if the URL cannot be fetched.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| max_chars | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |