Read Documentation Page as Markdown
read_docsRetrieve clean Markdown from documentation pages, stripping navigation and page chrome. Use for API docs, guides, and reference pages.
Instructions
Fetch a documentation or reference page and return only its main content as clean Markdown, stripping navigation sidebars, headers, footers, and other page chrome. Use this for API docs, guides, and reference pages. For general web pages use read_url. Same JS-rendering, anti-bot, and honest-error behavior as read_url.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The documentation URL to fetch (http or https). | |
| render | No | JS rendering: true = always, false = never, default = automatic (only for empty SPA shells). | |
| headers | No | Extra HTTP headers, e.g. an Authorization token or Cookie for docs behind a login. | |
| max_length | No | Maximum characters to return. Default 0 = unlimited. | |
| start_index | No | Character offset to start from. Default: 0. |