parse_page
Parse HTML web pages and return clean markdown as JSON for articles, docs, wiki, and blog posts.
Instructions
Read an HTML web page and return cleaned markdown as JSON.
WHEN TO USE: HTML articles, docs, wiki, blog posts, /abs pages. WHEN NOT TO USE: PDF, DOCX, XLSX, ZIP, images, or other file downloads — call fetch_binary instead. If this tool returns is_binary=true, switch to fetch_binary (do not retry parse_page in a loop).
Returns JSON fields: success, url, status_code, markdown, error_message, links_internal, links_external, truncated, used_proxy, content_type, is_binary, binary_kind, hint.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | http(s) URL of an HTML page (not a PDF/ZIP/DOCX file). | |
| timeout | No | Request timeout in seconds (server may clamp). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |