Skip to main content
Glama

Get SMS Thread

sms_thread_get
Read-onlyIdempotent

Get one SMS/MMS conversation with its message history, oldest first. Use sms_thread_list to find thread IDs (or take threadId off any SMS). For a conversation longer than limit, returns its most recent messages; page deeper history with sms_list.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThread ID (use sms_thread_list to find IDs).
limitNoMax messages to return in the thread.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds valuable behavioral context: messages are returned oldest first, and when the conversation exceeds the limit, only the most recent messages are returned, with deeper history accessible via sms_list. This goes beyond the annotations without contradicting them.

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 three sentences, each carrying essential information: purpose, ID discovery, and pagination behavior. It is front-loaded with the primary action and avoids any fluff, making it efficient and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema defining the return format, annotations covering safety, and the description explaining ordering, pagination, and ID retrieval, nothing essential is missing. The tool is simple (2 parameters, no nested objects) and the description fully equips an agent to use it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, with both parameters described in the schema. The description adds extra semantic value by explaining the behavior of the limit parameter (returns most recent messages when exceeded), which is not in the schema. This enhances understanding of how the limit affects results, though it is a modest addition.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get' and the resource 'one SMS/MMS conversation with its message history, oldest first.' It distinguishes itself from sms_thread_list (which lists threads) and sms_list (which pages messages) by explicitly mentioning pagination and ordering. This makes the tool's purpose unmistakable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides explicit guidance on how to obtain the required thread ID via sms_thread_list or from any SMS, and explains when to use sms_list for deeper history when the conversation exceeds the limit. This gives clear context for when to use this tool versus its siblings, leaving no ambiguity.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.