get_conversation_context
Get full conversation context for a specific thread
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| threadId | Yes | Thread ID to get conversation for | |
| maxEmails | No | Maximum number of emails to include in context |
Get full conversation context for a specific thread
| Name | Required | Description | Default |
|---|---|---|---|
| threadId | Yes | Thread ID to get conversation for | |
| maxEmails | No | Maximum number of emails to include in context |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. The description only says 'get full conversation context' without explaining what 'full' means, how maxEmails affects results, or any other behavioral details like read-only nature, pagination, or return format. This is insufficient given the lack of annotation support.
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?
The description is a single, direct sentence with no unnecessary words. It is front-loaded and concise, making it easy to parse quickly.
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?
For a simple tool with two parameters and no output schema, the description provides the core purpose but lacks crucial context such as what the response contains, how maxEmails influences results, or any prerequisites. It is minimally viable but not fully complete.
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?
The schema already describes both parameters (threadId and maxEmails) with clear descriptions, so schema coverage is 100%. The tool description does not add any additional meaning or clarify the parameters further, thus baseline 3 is appropriate.
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?
The description clearly states the action ('Get') and the resource ('full conversation context for a specific thread'). It is specific about the scope, distinguishing it from sibling tools like get_conversation_threads which likely list threads rather than retrieve a single thread's full context.
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?
The description implies usage when you need conversation context for a particular thread, but provides no explicit guidance on when to use this tool versus alternatives like get_threads_for_sender or read_inbox. No exclusions or alternative mentions are present.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.