UNPKG

mcp-ts-template

Version:

A production-grade TypeScript template for building robust Model Context Protocol (MCP) servers, featuring built-in observability with OpenTelemetry, advanced error handling, comprehensive utilities, and a modular architecture.

13 lines 583 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"; //# sourceMappingURL=index.js.map