get_chapter
Retrieve a specific chapter's content, title, summary, and navigation details by title or index from a knowledge file within the Knowledge MCP Server. Use chapter_title or chapter_index for precise access.
Instructions
Retrieve a single chapter's content by title or index. Specify either chapter_title OR chapter_index (not both). Returns: {success: bool, title: str, content: str, summary: str, index: int, total_chapters: int, has_next: bool, has_previous: bool}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chapter_index | No | Zero-based index of the chapter (use this OR chapter_title) | |
chapter_title | No | Title of the chapter to retrieve (use this OR chapter_index) | |
filename | Yes | Knowledge file name (must include .md extension) | |
project_id | Yes | The project identifier |