get_wiki_section
Retrieve markdown content of a specific wiki section using its unique key, with adjustable character limits and offset for pagination to read full sections efficiently.
Instructions
Retrieve markdown content of a wiki section. Defaults to 8000 chars to save tokens. Set limit higher or use offset to read the full section.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | The unique slug key of the section (e.g., 'portage-backend-architecture') | |
| limit | No | Max characters to return. Default is 8000 but you can set it higher to get the full content in one call. | |
| offset | No | Character offset to start from. Use to paginate through large sections. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| error | No | Error message if section not found or key invalid | |
| limit | No | Applied character limit | |
| title | No | Section display title | |
| offset | No | Current character offset | |
| parent | No | Parent topic name | |
| source | No | Source file path | |
| content | No | Section markdown content | |
| hasMore | No | Whether more content exists beyond this page | |
| nextOffset | No | Offset for the next page, if hasMore is true | |
| breadcrumbs | No | Heading hierarchy from root to parent | |
| suggestions | No | Similar keys when section not found | |
| totalLength | No | Total content length in characters | |
| relatedSections | No | Related sections by key prefix |