Skip to main content
Glama

Echo a connectivity probe

echo
Read-onlyIdempotent

Check MCP session availability by sending a message and receiving the same payload with server name and version, confirming the connection is active.

Instructions

Return the provided message plus server name/version to confirm the MCP session is alive. Use as a liveness probe. Do not use to discover tools (discover_capabilities) or to persist state. Read-only, idempotent, no network I/O, no quota side effects beyond the standard tool gate. message defaults to 'ping'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
messageNoPayload echoed back unchanged. Default 'ping'.ping

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.5.0
    • addedInput schema / properties / message / description
      Added value: +"Payload echoed back unchanged. Default 'ping'."
  2. First observedv0.4.0

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already provide readOnlyHint, idempotentHint, and destructiveHint, and the description builds on this by adding behavioral details not in annotations: no network I/O, no quota side effects beyond the tool gate, and the exact return shape (message plus server name/version). This is exactly the kind of added context that helps the agent reason about side effects.

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?

Three sentences, no wasted words. Purpose, usage, exclusions, safety traits, and default behavior are all covered in a compact, front-loaded structure.

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-optional-parameter tool with rich annotations and an output schema, the description is fully sufficient. There is nothing an agent needs to know to call it correctly that is missing: behavior, output, side effects, default, and alternatives are all addressed.

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%, so the schema fully documents the message parameter, including its default value and behavior ('Payload echoed back unchanged'). The description repeats the default but adds no new parameter-specific meaning beyond what the schema already conveys.

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 clearly states a specific verb and resource: 'Return the provided message plus server name/version to confirm the MCP session is alive.' It also explicitly differentiates from sibling tools by positioning itself as a liveness probe rather than a discovery or persistence tool.

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

Usage Guidelines5/5

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

The description explicitly says when to use it ('Use as a liveness probe') and when not to use it ('Do not use to discover tools (discover_capabilities) or to persist state'). It names an alternative and provides clear exclusion conditions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.