get_section
Retrieve a specific section's full content by section ID, pulling only the bytes you need. Combine with search or table of contents results to read exact documentation without scanning entire files.
Instructions
Retrieve the full content of a specific section using byte-range reads. Use after identifying section IDs via search_sections or get_toc. Returns this section's own bytes; nested child sections are not included.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | Repository identifier | |
| verify | No | Verify content hash matches stored hash (detects source drift) | |
| section_id | Yes | Section ID from get_toc, search_sections, or get_document_outline | |
| 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. | |
| strip_boilerplate | No | v1.24+ — when true, suppress repeated cross-section fragments (footers, nav, license headers) before returning content. |