Skip to main content
Glama
tom275275

Google Workspace MCP Server

by tom275275

get_gmail_thread_content

Retrieve the full content of any Gmail conversation thread, including every message, by providing the thread ID and the user's Gmail address.

Instructions

Retrieves the complete content of a Gmail conversation thread, including all messages.

Args: thread_id (str): The unique ID of the Gmail thread to retrieve. user_google_email (str): The user's Google email address. Required.

Returns: str: The complete thread content with all messages formatted for reading.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
thread_idYes
user_google_emailYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.14.3

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral disclosure burden. It states the operation is a retrieval, includes all messages, and returns content 'formatted for reading.' It does not mention auth prerequisites, error behavior, or potential size of the returned thread, but the read-only nature is clearly conveyed.

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 tight and well-structured: a single action sentence followed by a compact Args/Returns block. Every part earns its place, and the main behavior is front-loaded.

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?

For a simple two-parameter read tool, the description covers the inputs and the return value, and an output schema exists. The main gaps are the lack of explicit guidance about when to use this tool versus get_gmail_threads_content_batch and no mention of auth or error behavior.

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 compensate. It defines thread_id as 'the unique ID of the Gmail thread to retrieve' and user_google_email as 'the user's Google email address.' These are minimal but do add some semantic meaning beyond the bare schema types.

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 opens with a specific verb and resource: 'Retrieves the complete content of a Gmail conversation thread, including all messages.' This clearly identifies a single conversation thread as the target and distinguishes it from message-level tools, though it does not explicitly differentiate from the batch sibling tool.

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 single-thread scope is implied by 'a Gmail conversation thread,' so an agent can infer this tool is for one thread rather than multiple. However, the description never explicitly says when to choose this over get_gmail_threads_content_batch or provides any exclusion criteria.

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

Deploy Server

Other Tools