Read wiki page
wiki_read_pageRead a Markdown wiki page by path, optionally retrieving a specific heading section or line range, omitting YAML frontmatter when needed. Get wiki content precisely for offline LLM retrieval.
Instructions
Read a wiki page. With no extra args the full file including frontmatter is returned; section returns that heading's section; startLine/endLine return a line range.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path relative to the wiki root, e.g. 'concepts/llm-wiki.md'. | |
| endLine | No | Last line (1-based, inclusive). | |
| section | No | Heading text whose section to read. | |
| startLine | No | First line (1-based, inclusive). | |
| includeFrontmatter | No | false omits the YAML header (default true). |