Skip to main content
Glama

SentinelScan Cloud MCP Server

Echo

echo

Echoes the provided text back to the caller.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesText to echo back

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.9/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation5/5

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.

Naming Consistency3/5

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.

Tool Count2/5

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.

Completeness1/5

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.

Resources