read_email_thread
Read one of your email threads: subject, participants, linked contact, and the newest messages (condensed, quotes trimmed).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| thread_id | Yes | ||
| max_messages | No | Max 50, default 12 |
Read one of your email threads: subject, participants, linked contact, and the newest messages (condensed, quotes trimmed).
| Name | Required | Description | Default |
|---|---|---|---|
| thread_id | Yes | ||
| max_messages | No | Max 50, default 12 |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=false, so safety is covered, but the description adds meaningful fidelity context: messages come back condensed with quotes trimmed, so an agent should not expect raw full bodies. That is a real behavioral trait beyond the structured fields. It does not mention truncation limits or auth requirements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single tightly written sentence that front-loads the action and enumerates the payload. Every clause carries information and nothing is redundant.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description usefully enumerates the returned fields and the condensed-message behavior, which is the key completeness burden here. The remaining gap is the undocumented parameters, but for a simple two-param read tool the description is largely sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With only 50% schema description coverage, the description should compensate, but it adds nothing about thread_id's accepted type/format or about max_messages controlling message count. The phrase 'newest messages' vaguely gestures at ordering/quantity but does not explain the parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb (read) and resource (one email thread) and enumerates what is returned: subject, participants, linked contact, newest messages. It distinguishes itself from listing/searching siblings like search_inbox and list_email_followups by emphasizing a single thread, though it never names an alternative explicitly.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus search_inbox, find_communications, or list_email_followups. The only implied usage is that the caller already knows a thread_id, but no precondition or exclusion is stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.