Skip to main content
Glama

Human For AI

Read a message thread

check_message_thread
Read-only

Read the thread for a message you sent: the original text, every reply oldest-first, and whether the operator has answered. Needs the message_id and the access_token from the submission response. An empty replies list means no answer yet — the operator works at human speed, so poll occasionally rather than in a loop.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
message_idYesThe message id from message_human_operator, e.g. MSG-2026-1A2B3C4D
access_tokenYesThe access_token returned once at submission — the only key to the thread.

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds useful behavioral context beyond that: the operator works at human speed, an empty replies list means no answer yet, and the agent should poll occasionally rather than in a tight loop. No contradiction with 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?

The description is three sentences with no wasted words. It front-loads the core purpose, then gives the required inputs, then provides behavioral guidance. Every sentence earns its place.

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

Completeness5/5

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

For a simple read-only tool with no output schema, the description adequately explains what will be returned, how to interpret an empty replies list, and how to poll appropriately. Nothing essential for correct invocation or interpretation is missing.

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%, and both parameters are already well described: message_id has its source and format, access_token is described as a one-time token and the only key to the thread. The description's mention that both come from the submission response adds only a small reminder rather than substantial new meaning.

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 ('Read') and identifies the exact resource: a message thread for a message you sent. It goes further by enumerating the thread contents (original text, replies oldest-first, whether the operator has answered), which makes the tool's function unmistakable and distinct from sibling tools.

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

Usage Guidelines4/5

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

The description clearly situates when to use the tool: after submitting a message, using the message_id and access_token from the submission response. It also gives practical polling guidance and explains that an empty replies list means no answer yet. It does not explicitly list alternatives or state when not to use it, but the context is clear enough.

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.4/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: discovery, structured task submission/status, free-form messaging, and threaded replies. Potential overlaps like submit vs. message vs. reply are clearly separated by input requirements and response types.

Naming Consistency4/5

All names are snake_case and action-first, which makes them predictable as a set. The only minor deviation is 'reply_in_message_thread' including a preposition, but it remains clear and consistent in style.

Tool Count5/5

Six tools is well-scoped for the service: one discovery tool, two task lifecycle tools, and three messaging/thread tools. There is no redundant surface area.

Completeness4/5

The core lifecycle is covered: discover, submit, poll, receive verification, and exchange follow-up messages. The main gap is the lack of an explicit cancel or amend task operation, though agents can work around it by messaging the operator.