Skip to main content
Glama

List or read journals

list-journals
Read-onlyIdempotent

Lists 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

TableJSON Schema
NameRequiredDescriptionDefault
offsetNoCharacter position to start reading at (default 0). Use nextOffset from the previous chunk.
pageIdNoTogether with journalId: read this page.
maxCharsNoCharacters per chunk, default 50000, at least 1000, at most 200000. Oversized answers break the bridge.
journalIdNoRead this journal instead of listing all of them.
filterQuestsNoList only journals whose name contains quest, mission, task, adventure, job or contract (default false).
includeContentNoAdd a preview of the first 150 characters of each journal to the list (default false).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv14.2609.4

TDQS

A4.1/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the readOnlyHint/idempotentHint annotations, the description adds genuinely useful behavior: chunked content via maxChars, hasMore/nextOffset handling, media pages returning source addresses, and a warning to never write a partial chunk back. This is substantive behavioral disclosure that annotations alone do not provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but every sentence earns its place: invocation modes are front-loaded, and the pagination warning is critical. No filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no output schema and several optional parameters, the description covers the main return behavior, media content behavior, and pagination protocol. It relies on the schema for filterQuests/includeContent and does not spell out the exact response envelope, but enough is present for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already documents all parameters at 100% coverage, so the baseline is 3. The description adds meaningful semantics beyond the schema by explaining how journalId/pageId select different response shapes and how offset/maxChars interact with chunked output.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific verb (list/read) and resource (journals), and distinguishes three invocation modes by presence of journalId and pageId. It does not explicitly name a sibling like search-journals, so it stops just short of full sibling differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear contextual conditions for each mode ('Without journalId...', 'With journalId...'), which implies when this tool is appropriate. It does not explicitly say when to prefer search-journals or other journal tools, so usage guidance is helpful but not fully explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools