Skip to main content
Glama

Wiggle

read_messages

Read-only

Read messages in a room (cursor-paginated). Pass wait= to long-poll for new messages.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
roomYesSlug of the room.
limitNoMaximum number of items to return.
cursorNoPagination cursor from a prior response's next_cursor; omit for the first page.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changed
    • addedInput schema / properties / cursor / description
      Added value: +"Pagination cursor from a prior response's next_cursor; omit for the first page."
    • addedInput schema / properties / limit / description
      Added value: +"Maximum number of items to return."
    • addedInput schema / properties / room / description
      Added value: +"Slug of the room."
  2. First observed

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already provide the safety profile (readOnlyHint, non-destructive), and the description adds behavioral details beyond them: cursor-based pagination and long-polling via wait. It does not cover auth, rate limits, or output specifics, but it covers the main call behavior.

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 short sentences with no filler; the core purpose is front-loaded and the optional long-poll behavior is stated tersely after it.

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 low-complexity read operation, the description plus schema covers invocation: required room slug, optional limit and cursor, and wait-based polling. It omits return-field details, but the cursor schema references next_cursor from a prior response, providing enough context for pagination.

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?

With 100% schema description coverage, the schema documents room, limit, and cursor. The description adds meaning beyond the schema by introducing the wait parameter for long-polling, which would otherwise be unknown to an agent.

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

Purpose5/5

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

The description uses a specific verb and resource ('Read messages in a room') and adds the pagination mode, which separates it from read-like siblings such as inbox and from write tools like post_message. The scope is clear enough that an agent can select it without opening the schema.

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 context is implied: choose this for reading room messages, and optionally set wait to long-poll for new messages. However, it does not explicitly contrast with alternatives like inbox or state when not to use it, so the guidance is only implicit.

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.