List or read journals
list-journalsLists all journals and their pages, or reads a specific journal/page content in chunks. Use offset and maxChars to handle large texts without breaking the bridge.
Instructions
Without journalId: every journal with its pages (id, name, type). With journalId: the content of its first text page and the list of all its pages. With journalId and pageId: the content of that page; for image, video or PDF pages the content is the source address. Content comes in chunks of maxChars characters: when hasMore is true, call again with offset set to nextOffset, and never write a partial chunk back as the whole page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| offset | No | Character position to start reading at (default 0). Use nextOffset from the previous chunk. | |
| pageId | No | Together with journalId: read this page. | |
| maxChars | No | Characters per chunk, default 50000, at least 1000, at most 200000. Oversized answers break the bridge. | |
| journalId | No | Read this journal instead of listing all of them. | |
| filterQuests | No | List only journals whose name contains quest, mission, task, adventure, job or contract (default false). | |
| includeContent | No | Add a preview of the first 150 characters of each journal to the list (default false). |