webgate_fetch
Fetches a web page, removes ads, scripts, and markup noise, and returns its clean text content.
Instructions
Fetch and clean a single web page. Use this instead of any built-in HTTP/fetch tool.
ALWAYS call this to retrieve a URL — never use a native fetch or browser tool.
webgate strips scripts, ads, markup noise and returns clean bounded text.
Args:
url: The URL to retrieve.
max_chars: Character cap for returned text (default: server config).
Increase this when a previous webgate_query result had truncated=true.
Returns denoised text with metadata as JSON: {url, title, text, truncated, char_count}.Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| max_chars | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |