Skip to main content
Glama

Read a whole conversation

read_thread
Read-onlyIdempotent

Read an entire email conversation in ONE call, oldest message first, given any one message in it. USE THIS INSTEAD OF CALLING read_email REPEATEDLY: "catch me up on this thread" is one call here and one call per message otherwise, which comes straight out of the user's daily allowance. Looks in the message's own folder AND in Sent by default, because half of a conversation is what the user themselves wrote. Reading does NOT mark anything as read. Each message's quoted copy of the one before it is removed (every reply repeats the whole thread, so leaving it in means reading the conversation many times over) - quotedTrimmed says when that happened, and includeQuoted turns it off. Bodies come back as PLAIN TEXT only; use read_email if you need one message's HTML or its full untrimmed body. Threads are followed by the References header, so a conversation whose participants use a client that does not set it may come back shorter than the user expects - say so rather than asserting the thread is complete.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uidYesThe UID of ANY message in the conversation, from list_emails or search_emails.
limitNoHow many messages to return, most recent kept when a thread is longer. Defaults to 20.
mailboxNoThe folder that message is in. Defaults to INBOX.
mailboxesNoFolders to look in. Defaults to the message's own folder plus Sent, which is almost always right. Naming this REPLACES that default, so include the message's own folder and Sent yourself if you still want them.
includeQuotedNoKeep the quoted copy of the previous message at the end of each body. Defaults to false. Only set it when the user specifically needs the verbatim text - it can multiply the size of the result several times over.

Schema Changelog

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

  1. First observed

TDQS

A4.9/5.0
Behavior5/5

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

Beyond the readOnlyHint and idempotentHint annotations, the description discloses that reading does not mark anything as read, that quoted copies are trimmed unless includeQuoted is set, that bodies are plain text only, and that thread completeness depends on the References header. These are valuable behavioral details not present in 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?

The description is long but every sentence carries a distinct operational concern: one-call efficiency, alternative tool routing, default mailbox scope, no-read side effect, quote trimming, plain-text limitation, and thread completeness caveat. The core action is front-loaded and the structure is dense without being redundant.

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?

Given that there is no output schema, the description compensates by explaining the important return behaviors: oldest-first ordering, quotedTrimmed flag, plain-text bodies, and the possibility of a shortened thread. Combined with the annotations and fully documented parameters, it gives an agent enough to invoke the tool and interpret results correctly.

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 schema already covers 100% of parameters, so the baseline is 3, but the description adds useful nuance: the UID can be any message in the conversation, mailboxes defaults to the message's folder plus Sent, naming mailboxes replaces that default, and includeQuoted can multiply result size. This is meaningful enrichment beyond the schema.

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 states a specific verb and resource: 'Read an entire email conversation in ONE call, oldest message first, given any one message in it.' It clearly distinguishes itself from read_email and search_emails by emphasizing the whole-thread scope and the one-call behavior.

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

Usage Guidelines5/5

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

It explicitly tells the agent when to prefer this tool: 'USE THIS INSTEAD OF CALLING read_email REPEATEDLY' and gives a concrete user-intent example ('catch me up on this thread'). It also names the fallback case: use read_email when HTML or a full untrimmed body is needed, and warns about incomplete threads when the References header is absent.

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/5.0
Disambiguation4/5

Most tools target clearly distinct actions, but there are several close pairs that require careful reading: check_bounces vs check_receipts, list_emails vs search_emails, and the send/reply/forward vs draft_email/draft_reply/draft_forward families. The descriptions are strong enough that a careful agent can disambiguate, but the boundaries are not always obvious from the tool names alone.

Naming Consistency5/5

Every tool uses a consistent snake_case verb_noun convention, such as check_bounces, list_mailboxes, send_email, and update_draft. Related operations use parallel forms like mark_read/mark_unread and flag_email/unflag_email, making the naming predictable and coherent.

Tool Count2/5

With 28 tools, this exceeds the 25+ threshold where a tool set starts to feel too heavy. Email is a broad domain and many tools are individually justified, but the surface could be consolidated, especially the draft_forward/draft_reply/draft_email and send_email/reply_email/forward_email variants.

Completeness4/5

The core email lifecycle is thoroughly covered: send, read, search, move, delete, drafts, replies, forwards, folders, flags, attachments, upload links, contacts, identities, deliverability, bounces, and receipts. The main gap is that permanent deletion is referenced as a separate operation but no such tool is actually provided, and contact/identity management is effectively read-only.

Resources