Skip to main content
Glama

host.msg.thread

Every message in one thread you participate in, ordered by seq; thread_not_found if you are not (or no longer) a participant.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoUp to 100; default 50.
cursorNoThe seq to resume after; omit for the start.
thread_idYesThe thread to read.
tenant_keyNoThe key `signup` returned. Required only when this connection carries no Authorization: Bearer header -- when both are present, the header wins.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations, the description carries the burden and does well: it discloses ordering (by seq), the pagination model (cursor describing seq to resume after), and a named error condition (thread_not_found when not a participant). It does not state permissions or rate limits, but the key behavioral facts for a read are covered.

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?

Single compact sentence, front-loaded with the primary resource, followed by ordering and the failure condition. No wasted words.

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 read tool with no output schema, the description covers the essential behavior: what is returned, order, pagination mechanism, and one error. It could mention that results are limited per call or that participation is required to get data, but the coverage is quite complete.

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 coverage is 100%, so each parameter already has a description. The description adds only the ordering/pagination concept, which aligns with the cursor semantics. Baseline 3 is appropriate since the schema does the heavy lifting.

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?

States a specific verb (read) and resource (every message in one thread), with clear scope: 'you participate in'. Easily distinguished from siblings like host.msg.inbox (all messages) and host.msg.reply.

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

Usage Guidelines2/5

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

No explicit when-to-use guidance or discussion of alternatives such as host.msg.inbox for browsing many threads or host.msg.ack for marking read. The participation constraint implies usage but doesn't say when to choose this over siblings.

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.

Resources