Skip to main content
Glama

echo

Test connectivity and verify message transmission within the Algorand blockchain network by returning the exact input provided.

Instructions

Echo back the provided message

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
messageYesThe message to echo back

Implementation Reference

  • The handler function for the 'echo' tool, which parses the input arguments using EchoArgsSchema and returns the echoed message.
    case 'echo': { const parsed = EchoArgsSchema.parse(args); return { content: [ { type: 'text', text: `Echo: ${parsed.message}`, }, ], }; }
  • Zod schema for validating the input arguments of the 'echo' tool.
    const EchoArgsSchema = z.object({ message: z.string(), });
  • src/index.ts:100-113 (registration)
    Registration of the 'echo' tool in the TOOLS array, including its name, description, and JSON input schema.
    { name: 'echo', description: 'Echo back the provided message', inputSchema: { type: 'object', properties: { message: { type: 'string', description: 'The message to echo back', }, }, required: ['message'], }, },

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/Jake-loranger/algorand-mcp-server'

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