Read AWS documentation page as markdown
Fetches and converts AWS documentation pages to markdown format. Use this to quickly read and parse official AWS docs when you need to reference service documentation, API specs, or configuration guides.
/plugin marketplace add dnvriend/aws-knowledge-tool/plugin install aws-knowledge-tool@aws-knowledge-toolurlRead AWS documentation from URL and convert to markdown format.
aws-knowledge-tool read "URL" [--start-index N] [--max-length M] [--json]
URL: AWS documentation URL (required)--start-index N / -s N: Starting character index--max-length M / -m M: Maximum characters to fetch--json: Output JSON format-v/-vv/-vvv: Verbosity (INFO/DEBUG/TRACE)# Read full document
aws-knowledge-tool read "https://docs.aws.amazon.com/lambda/latest/dg/welcome.html"
# Read with pagination
aws-knowledge-tool read "https://docs.aws.amazon.com/..." --start-index 5000 --max-length 2000
# Pipeline from search
aws-knowledge-tool search "Lambda" --json | jq -r '.[0].url' | aws-knowledge-tool read --stdin
Returns markdown-formatted documentation content from docs.aws.amazon.com or aws.amazon.com domains.