Echo
echoEchoes the provided text back to the caller.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Text to echo back |
echoEchoes the provided text back to the caller.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Text to echo back |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It clearly states that the tool returns the provided text unchanged to the caller, which implies a pure, side-effect-free operation. It does not explicitly address rate limits, permissions, or formatting edge cases, but for a trivial echo tool the core behavior is transparent.
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 sentence with no filler, starts with the action verb, and communicates the full contract immediately. Every word earns its place.
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 single-parameter, no-output-schema utility tool, the description fully specifies the input and the resulting behavior. An agent has everything needed to select and invoke the tool correctly without further clarification.
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 input schema already provides 100% coverage by describing the text parameter as 'Text to echo back'. The tool description adds no new meaning beyond referring to 'the provided text', so the baseline of 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 uses a specific verb ('echoes'), names the resource ('the provided text'), and specifies the recipient ('the caller'). This clearly distinguishes it from siblings like add and server_time by stating the exact behavior and output.
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 explicit when-to-use or when-not-to-use guidance is given, and no alternatives are mentioned. However, the intended usage is strongly implied by the simple 'echo' semantics and the clear separation from the unrelated sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool performs a clearly distinct function: arithmetic, echoing text, and returning the current time. There is no overlap or ambiguity between them.
All tool names are simple, lowercase verbs (add, echo, server_time) following a consistent and predictable style. The naming pattern is uniform.
With only 3 tools, the server is tightly scoped for its apparent purpose as a small utility server. Each tool serves a unique, purposeful function without bloat.
The server covers its apparent domain of basic utilities completely: numeric operation, text handling, and time retrieval. There are no obvious missing operations within this scope.