Get chapter text
get_chapterRetrieve a chapter's plain text by its index. Use offset to paginate through long chapters and read only the needed portion.
Instructions
Return the plain text of one chapter/section by its index (from list_chapters). Output is capped (default ~24000 chars); if the chapter is longer, use offset with the returned nextOffset to page through it. Read only what you need.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bookId | Yes | The book's id. | |
| offset | No | Start character offset (default 0). | |
| chapter | Yes | Chapter index from list_chapters. | |
| maxChars | No | Max characters to return (default 24000). |