H

hedons.io

A graphic-novel adaptation of Stanisław Lem's 'In Hot Pursuit of Happiness'. WebMCP tools let an agent browse the table of contents, navigate pages, pull verbatim page text, and full-text search the book.

3read
3action
https://hedons.io/

live · Personal & Media · JSON · API for agents

Tools 6 tools

get_table_of_contentsread

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.

View tool JSON
{
  "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"
}
go_to_pageaction

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.

View tool JSON
{
  "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"
}
next_pageaction

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.

View tool JSON
{
  "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"
}
prev_pageaction

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.

View tool JSON
{
  "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"
}
get_page_textread

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.

View tool JSON
{
  "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"
}
search_textread

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.

View tool JSON
{
  "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"
}