We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/IBM/ibmi-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•551 B
/**
* @fileoverview Barrel file for the `echo_message` tool.
* This file serves as the public interface for the echo tool module,
* primarily exporting the `registerEchoTool` function. This function is
* responsible for registering the echo tool with an MCP server instance,
* making it available for invocation by clients.
*
* Consuming modules should import from this barrel file to access
* the echo tool's registration capabilities.
* @module src/mcp-server/tools/echoTool/index
*/
export { registerEchoTool } from "./registration.js";