Skip to main content
Glama

Echo

echo

Echoes the provided text back to the caller.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesText to echo back

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It accurately states the exact behavior: the tool returns the provided text unchanged. The behavior is trivial and fully disclosed, though it does not mention edge cases like empty strings or special characters.

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 concise sentence that fully conveys the tool's purpose with no wasted words. It is appropriately sized for a tool of this trivial complexity.

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 one-parameter tool with no output schema and no annotations, the description is complete. An agent can determine exactly what to pass and what to expect back without any additional context.

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?

Schema description coverage is 100%, and the parameter is already described as 'Text to echo back.' The description adds no additional semantic detail beyond the schema, so the baseline score of 3 is appropriate.

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 and resource: 'Echoes the provided text back to the caller.' This clearly distinguishes it from sibling tools like add and server_time, which perform entirely different operations.

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

Usage Guidelines3/5

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

The description gives no explicit guidance on when to use this tool versus alternatives, but the purpose is so self-evident that usage is implied. Sibling tools (add, server_time) are unrelated, so no exclusionary guidance is necessary.

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

A4.3/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: book_slot handles booking creation, get_booking_status checks status, get_supplier_info provides supplier network details, and search_slots finds available inventory. The descriptions clearly differentiate their functions, eliminating any ambiguity for an agent.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (e.g., book_slot, get_booking_status, get_supplier_info, search_slots) using snake_case throughout. This predictability makes the tool set easy to navigate and understand at a glance.

Tool Count4/5

With 4 tools, the count is reasonable for a booking API focused on last-minute deals, covering core operations like search, booking, status checks, and supplier info. It feels slightly lean but well-scoped, as each tool serves a distinct and essential function without bloat.

Completeness4/5

The tool set covers key workflows: discovering suppliers, searching slots, booking, and checking status, which supports a complete booking lifecycle. A minor gap is the lack of tools for updating or canceling bookings, but agents can likely work around this given the focus on last-minute deals where such actions might be limited.