get_message
Fetch complete SMS message details by UUID to review content, status, and metadata for accurate message tracking.
Instructions
Get SMS message detail by UUID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Message UUID |
Fetch complete SMS message details by UUID to review content, status, and metadata for accurate message tracking.
Get SMS message detail by UUID.
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Message UUID |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It does not state whether the operation is read-only, any side effects, or what the response contains beyond 'detail.' No error or edge-case behavior is mentioned.
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, efficient sentence that gets straight to the point with no wasted words. It is appropriately concise for a simple get operation.
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 one-parameter get with no annotations or output schema, the description is minimal but does state the resource and key. However, it lacks any mention of response structure, error handling, or prerequisites, so it is 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?
Schema coverage is 100% so the schema documents the uuid parameter. The description adds no additional semantic information beyond the schema's own description, so the 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 clearly states the action (get) and resource (SMS message detail) and identifies the lookup key (UUID). It distinguishes from list_messages by implying a single message retrieval, though it does not explicitly name alternatives.
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?
No guidance is provided on when to use this tool versus list_messages or get_conversation. The description does not mention any context or exclusions, leaving the agent to infer usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.