get_section
Retrieve the full content of a documentation section by its ID using byte-range reads, reducing token waste. Optionally verify content integrity or strip repeated boilerplate.
Instructions
Retrieve the full content of a specific section using byte-range reads. Use after identifying section IDs via search_sections or get_toc.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | Repository identifier | |
| section_id | Yes | Section ID from get_toc, search_sections, or get_document_outline | |
| verify | No | Verify content hash matches stored hash (detects source drift) | |
| strip_boilerplate | No | v1.24+ — when true, suppress repeated cross-section fragments (footers, nav, license headers) before returning content. | |
| compress_code | No | v1.35+ — when true, drop blank lines and full-line comments inside fenced code blocks before returning. _meta.code_compressed_bytes reports bytes saved. |