Get one message
get_messageFetch a single message by id, with its reply count and thread links.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Message UUID |
get_messageFetch a single message by id, with its reply count and thread links.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Message UUID |
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 burden of behavioral disclosure. 'Fetch' indicates a read-only action, and the description adds transparency about returned data ('reply count and thread links') beyond what the schema shows. It stops short of detailing error behavior or permissions, but for a simple single-get operation this is sufficient.
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, front-loaded sentence states the operation and key return details without redundancy. Every word contributes meaning.
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 one-parameter, no-output-schema tool, the description is nearly complete: it identifies the input, the operation, and important return characteristics. The only minor gap is the absence of explicit guidance on alternatives, but the simple scope keeps this from being a meaningful omission.
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?
Schema description coverage is 100% and the only parameter 'id' is already described as 'Message UUID'. The description's mention of 'by id' adds no semantic detail beyond the schema, so baseline 3 applies.
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 uses a specific verb ('Fetch') and resource ('a single message by id'), and adds distinctive output details ('reply count and thread links'). This clearly differentiates it from siblings like read_messages, search_messages, and write_message.
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 clearly implies when to use this tool: when you need one specific message identified by id. It does not explicitly name alternatives or exclusions, but the 'single message by id' context is enough to route an agent correctly among the listed siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.