aws_docs_read
Fetch any AWS documentation page and convert it to clean markdown. Handles pagination for long pages, returning content in manageable chunks.
Instructions
Fetch an AWS documentation page and return it as markdown. url must be an https://docs.aws.amazon.com/...html page (typically one returned by aws_docs_search). Long pages are paginated: pass startIndex (default 0) and maxLength (default 5000 chars); the response includes hasMore and nextStartIndex -- call again with nextStartIndex to continue. Strips nav/cookie-banner/feedback chrome before converting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | AWS docs page URL: https://docs.aws.amazon.com/<...>.html. Usually from an aws_docs_search result. | |
| startIndex | No | Character offset to start from (for paginated reads). Default 0. | |
| maxLength | No | Max characters of markdown to return. Default 5000; max 1000000. |