get_book
Retrieve detailed information about a specific book from BookStack, including its content structure and organization, by providing the book ID.
Instructions
Get details of a specific book including its content structure
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Book ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Book ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}