Skip to main content
Glama

echo

Send a message to receive an immediate reply using the mcp-flyin server. Designed to verify communication and test message handling in custom protocols.

Instructions

Echo back the input message

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
messageYesMessage to echo back

Implementation Reference

  • server.js:84-92 (handler)
    The handler logic for the 'echo' tool that returns the input message prefixed with 'Echo:' in a text content block.
    case 'echo': return { content: [ { type: 'text', text: `Echo: ${args.message}`, }, ], };
  • The input schema definition for the 'echo' tool, specifying an object with a required 'message' string property.
    inputSchema: { type: 'object', properties: { message: { type: 'string', description: 'Message to echo back', }, }, required: ['message'], },
  • server.js:30-44 (registration)
    The registration of the 'echo' tool in the listTools response, including name, description, and input schema.
    { name: 'echo', description: 'Echo back the input message', inputSchema: { type: 'object', properties: { message: { type: 'string', description: 'Message to echo back', }, }, required: ['message'], }, }, {

Other Tools

Related Tools

  • @srafi26/mcp-server
  • @avi892nash/purescript-mcp-tools
  • @piebro/echo-mcp-server-for-testing
  • @shaleen-wonder-ent/simple-mcp-server
  • @vjouenne76/mcp-server-scaffold
  • @nictuku/py-mcp-server-template

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/balajidommeti/MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server