get_chapter_summary
Generate chapter summaries from books to understand key content without reading the full text. Input book ID and chapter number to get structured insights.
Instructions
Get the summary for a specific chapter of a book
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| book_id | Yes | ||
| chapter_number | Yes |
Input Schema (JSON Schema)
{
"properties": {
"book_id": {
"title": "Book Id",
"type": "string"
},
"chapter_number": {
"title": "Chapter Number",
"type": "integer"
}
},
"required": [
"book_id",
"chapter_number"
],
"type": "object"
}