Skip to main content
Glama
currentspace

Bootstrap MCP Server

by currentspace

echo

Echo back a provided message using this tool on the Bootstrap MCP Server, designed for testing and validating MCP server setups.

Instructions

Echo back the provided message

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
messageYesMessage to echo

Implementation Reference

  • The handler function for the 'echo' tool, which returns the provided message as text content.
    private handleEcho(args: any) { const message = args.message as string return { content: [ { type: 'text', text: message, }, ], } }
  • The schema definition for the 'echo' tool, including name, description, and input schema.
    { name: 'echo', description: 'Echo back the provided message', inputSchema: { type: 'object', properties: { message: { type: 'string', description: 'Message to echo', }, }, required: ['message'], }, },
  • src/server.ts:84-85 (registration)
    The dispatch/registration case in the CallToolRequest handler that maps 'echo' tool calls to the handleEcho method.
    case 'echo': return this.handleEcho(args)

Other Tools

Related Tools

  • @piebro/echo-mcp-server-for-testing
  • @avi892nash/purescript-mcp-tools
  • @snoopdave/mcp-hello-world-ts
  • @SAGAAIDEV/mcp-ahrefs
  • @shaleen-wonder-ent/simple-mcp-server
  • @srafi26/mcp-server

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/currentspace/bootstrap_mcp'

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