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 |
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 full burden of behavioral disclosure. It clearly conveys the observable behavior: return the input text back to the caller. It does not explicitly state 'no side effects,' but the function is so trivial that the behavior is effectively 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 wasted words. It front-loads the action and outcome, making it easy for an agent to parse quickly.
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 with no side effects, this description plus the schema is sufficient for correct invocation. Nothing important is missing at this complexity level.
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 documents the single 'text' parameter with 100% coverage, so the description adds little beyond referring to 'provided text.' The baseline of 3 applies because the schema does the heavy lifting.
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') with a clear resource ('the provided text') and states the result ('back to the caller'). This is unambiguous and naturally distinguishes it from siblings like add and server_time.
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 provides no guidance about when to use this tool versus alternatives, nor any mention of typical use cases, exclusions, or context. An agent must infer usage solely from the name and basic purpose.
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.
add, echo, and server_time perform completely distinct functions with no behavioral overlap. An agent selecting among them would have no difficulty choosing the right tool.
add and echo are simple imperative verb names, while server_time is a noun phrase with an underscore. The names are readable and lowercase, but there is no consistent verb-noun pattern across the set.
Three tools is a reasonable count for a small utility server, but for a server named SentinelScan Cloud it is far too thin. The actual tools are generic helpers and do not align with the security scanning purpose implied by the server name.
The server's apparent domain is cloud security scanning, yet none of the tools address scanning, security findings, cloud resources, or related workflows. The available tools provide almost no coverage for the stated purpose.