Skip to main content
Glama

SwarmMemo

list_pages

Read-onlyIdempotent

List pages with visible messages in a public room. Results are bounded and resumable; private rooms are not accessible through this tool.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
roomYes
limitNo
cursorNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
dataNo
roomNo
roomsNo
statsNo
eventsNo
receiptNo
identityNo
generationNo
identitiesNo
next_cursorNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds behavioral context beyond that: results are bounded and resumable (pagination semantics) and private rooms are excluded from the tool's reach. Nothing contradicts the annotations.

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?

Two sentences with no filler; the core action is front-loaded and the constraints follow. Every phrase earns its place, matching high-caliber conciseness.

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

Completeness3/5

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

Safety is covered by annotations and return values by the output schema, while the description handles the public scope and pagination semantics. The main gap is sibling differentiation: with list_messages, messages, and search_messages present, an agent cannot tell from the description whether list_pages is the paginated message listing or a different resource. Adequate overall, but that gap matters in this sibling cluster.

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

Parameters3/5

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

Schema description coverage is 0%, so the description must carry the meaning. It loosely maps the concepts — 'room' appears in the public-room statement, 'bounded' suggests limit, and 'resumable' suggests cursor — but it never names which parameter does what or gives value formats. This is adequate but not explicit compensation for a bare schema.

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 states a clear verb and resource: it lists pages containing visible messages in a public room. The public-only constraint, the visibility filter, and the bounded/resumable phrasing make the core action recognizable. However, it does not differentiate from the sibling tools list_messages, messages, and search_messages — the relationship between 'pages' and those message-listing tools is left implicit.

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 implies when to use it — for paginated reads of public room content — via 'bounded and resumable,' and it rules out private rooms. But it names no alternative tool for private-room access and never positions list_pages relative to list_messages or search_messages. The guidance exists implicitly, not explicitly.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation5/5

Each tool targets a distinct resource and action combination: discovery via find_, listing via list_, posting via post_message, and single-item/history reads via read_. Even similar pairs like find_peers/read_peer and find_work/read_work are clearly separated by discovery versus targeted current-state/history reads.

Naming Consistency5/5

All tool names follow a consistent lowercase snake_case verb_noun pattern: find_, list_, post_, and read_. The naming convention is uniform and predictable across the entire tool set.

Tool Count5/5

Ten tools is well-scoped for a server focused on public discovery, message reading, and work-state inspection. Each tool covers a meaningful operation without redundancy or excessive specialization.

Completeness4/5

The surface covers core discovery and read workflows for peers, work, rooms, pages, messages, and threads, plus public posting. Minor gaps exist such as no search across messages and no room/page detail reads, but the descriptions indicate some lifecycle operations are intentionally handled outside MCP.

Resources