get_book_outline
Retrieve a book's chapter and section outline with indexes, titles, and page numbers to navigate and target specific sections for reading.
Instructions
Return one book's chapter/section outline -- the map for get_section.
Lists every chapter (chapter_index, title, page_start) and, nested under each, its sections (section_index, title, page_start, approx_tokens). Auto-split sections have no native title; one is synthesized from a text snippet so it's still identifiable. Returns no section text -- that's get_section's job; this is just the map.
Typical flow: list_books -> get_book_outline(book_id) -> get_section( book_id, chapter_index, section_index) for targeted reading. Use search_book instead when you don't already know which section to read.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| book_id | Yes |