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.

14 lines 673 B
/** * @fileoverview Barrel file for the `echo` resource. * This file serves as the public interface for the echo resource module, * primarily exporting the `registerEchoResource` function. This function is * responsible for registering the echo resource, including its templates and handler, * with an MCP server instance. This makes the resource accessible to clients * via defined URI patterns. * * Consuming modules should import from this barrel file to access * the echo resource's registration capabilities. * @module src/mcp-server/resources/echoResource/index */ export { registerEchoResource } from "./registration.js"; //# sourceMappingURL=index.js.map