← WebMCP Directory

Tool tree

hedons.io

liveMedia & Personal
https://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.
Explore capabilities
get_table_of_contentsAnswer

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": "answer",
  "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": "act",
  "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": "act",
  "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": "act",
  "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_textAnswer

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": "answer",
  "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_textAnswer

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": "answer",
  "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"
}