wiki_read
Read wiki pages with section navigation for efficient access. Supports single or multiple pages, and uses table of contents to jump directly to relevant sections.
Instructions
Read one or more wiki pages. Single page: pass page. Multiple pages: pass pages array — reads all in one request, saving N-1 round trips. RECOMMENDED WORKFLOW: (1) call without 'section' to get the TOC for large pages, (2) use wiki_search 'section' field to jump directly to the relevant heading, (3) call with 'section' to read only that part. Large pages without 'section' are truncated at 200 lines — check 'truncated' and 'toc' in the response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page path relative to wiki/ (e.g. 'concept-gil.md'). Use for single-page reads. | |
| pages | No | Array of page paths for multi-page reads. Returns an array of results in one request. | |
| section | No | Heading to read (e.g. '## Installation'). Case-insensitive partial match. Returns that section and its sub-sections only. Use the 'section' field from wiki_search results to navigate directly. | |
| offset | No | First line to return, 0-indexed (default: 0). Fallback for line-based paging when section navigation is insufficient. | |
| limit | No | Max lines to return (default: 200, max: 500). |