read_page
Extract page content from a browser tab as clean Markdown, raw HTML, or accessibility tree. Output is capped to protect context, with a configurable character limit.
Instructions
Read a tab's content. Returns clean Markdown by default; can also return raw HTML or the accessibility tree. Output is capped (default 25 KB) to protect the context — to LOCATE a specific element use find (cheaper) instead. Targets the active tab unless a browserId is given.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| browserId | No | browserId of the tab to read (from list_tabs). Defaults to the active tab. | |
| format | No | Output format. Default: markdown. | |
| maxChars | No | Truncate output to this many characters. Default 25000. Pass 0 for no cap. |