live · Personal & Media · JSON · API for agents
List the book's pages (number, act, title, whether the page has editorial marginalia). This is a graphic-novel adaptation of Stanisław Lem's 'In Hot Pursuit of Happiness'. All quotes are verbatim text from the Michael Kandel translation.
{
"name": "get_table_of_contents",
"kind": "read",
"impl": "imperative",
"description": "List the book's pages (number, act, title, whether the page has editorial marginalia). This is a graphic-novel adaptation of Stanisław Lem's 'In Hot Pursuit of Happiness'. All quotes are verbatim text from the Michael Kandel translation.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/reader"
}Navigate the reader to a specific page number. This is a graphic-novel adaptation of Stanisław Lem's 'In Hot Pursuit of Happiness'. All quotes are verbatim text from the Michael Kandel translation.
{
"name": "go_to_page",
"kind": "action",
"impl": "imperative",
"description": "Navigate the reader to a specific page number. This is a graphic-novel adaptation of Stanisław Lem's 'In Hot Pursuit of Happiness'. All quotes are verbatim text from the Michael Kandel translation.",
"inputSchema": {
"type": "object",
"properties": {
"page": {
"type": "integer",
"minimum": 1
}
},
"required": [
"page"
]
},
"page": "/reader"
}Advance the reader to the next page. This is a graphic-novel adaptation of Stanisław Lem's 'In Hot Pursuit of Happiness'. All quotes are verbatim text from the Michael Kandel translation.
{
"name": "next_page",
"kind": "action",
"impl": "imperative",
"description": "Advance the reader to the next page. This is a graphic-novel adaptation of Stanisław Lem's 'In Hot Pursuit of Happiness'. All quotes are verbatim text from the Michael Kandel translation.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/reader"
}Move the reader to the previous page. This is a graphic-novel adaptation of Stanisław Lem's 'In Hot Pursuit of Happiness'. All quotes are verbatim text from the Michael Kandel translation.
{
"name": "prev_page",
"kind": "action",
"impl": "imperative",
"description": "Move the reader to the previous page. This is a graphic-novel adaptation of Stanisław Lem's 'In Hot Pursuit of Happiness'. All quotes are verbatim text from the Michael Kandel translation.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/reader"
}Return the full text of one page in reading order — every speech balloon and editorial marginalia block, each with speaker, register, and verbatim quote. This is a graphic-novel adaptation of Stanisław Lem's 'In Hot Pursuit of Happiness'. All quotes are verbatim text from the Michael Kandel translation.
{
"name": "get_page_text",
"kind": "read",
"impl": "imperative",
"description": "Return the full text of one page in reading order — every speech balloon and editorial marginalia block, each with speaker, register, and verbatim quote. This is a graphic-novel adaptation of Stanisław Lem's 'In Hot Pursuit of Happiness'. All quotes are verbatim text from the Michael Kandel translation.",
"inputSchema": {
"type": "object",
"properties": {
"page": {
"type": "integer",
"minimum": 1
}
},
"required": [
"page"
]
},
"page": "/reader"
}Full-text search the book. Returns balloon/paragraph-level hits, each naming the page, panel, speaker, register, and the verbatim Lem quote. This is a graphic-novel adaptation of Stanisław Lem's 'In Hot Pursuit of Happiness'. All quotes are verbatim text from the Michael Kandel translation.
{
"name": "search_text",
"kind": "read",
"impl": "imperative",
"description": "Full-text search the book. Returns balloon/paragraph-level hits, each naming the page, panel, speaker, register, and the verbatim Lem quote. This is a graphic-novel adaptation of Stanisław Lem's 'In Hot Pursuit of Happiness'. All quotes are verbatim text from the Michael Kandel translation.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string"
},
"limit": {
"type": "integer",
"default": 20,
"minimum": 1
}
},
"required": [
"query"
]
},
"page": "/reader"
}