List messages
list_messagesTexts received by one line, newest first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many to return. Defaults to 20. | |
| lineId | Yes | The line's id, from list_lines. |
list_messagesTexts received by one line, newest first.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many to return. Defaults to 20. | |
| lineId | Yes | The line's id, from list_lines. |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden, and it does disclose two useful traits: only received (inbound) texts are returned, and results are ordered newest first. It does not cover pagination or the read-only nature, so the coverage is partial rather than rich.
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 tight sentence with no filler, and the scoping constraint plus ordering are front-loaded. It is efficient, though its brevity is close to the point of under-specification rather than maximal helpfulness.
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 read-only list tool with fully documented parameters, the definition is adequate. However, with no annotations and no output schema, an agent gets no signal about the return shape or pagination behavior, leaving a modest gap.
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%, so both lineId and limit are already documented in the schema. The description reinforces that the query is scoped to one line but adds no format, range, or default details beyond what the schema states.
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?
"Texts received by one line, newest first" names the resource (messages/texts), the scoping dimension (a single line), and the sort order. It is clearly distinguishable from siblings like latest_code (a single code) and list_lines (the lines themselves), 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?
No when-to-use or when-not-to-use guidance is given. The phrase "by one line" implies the tool is scoped to a single line, but there is no statement of prerequisites or of how this differs from reaching for latest_code or wait_for_code.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.