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.

12 lines 557 B
/** * @fileoverview Barrel file for the auth module. * Exports core utilities and middleware strategies for easier imports. * @module src/mcp-server/transports/auth/index */ export { authContext } from "./lib/authContext.js"; export { withRequiredScopes } from "./lib/authUtils.js"; export { createAuthStrategy } from "./authFactory.js"; export { createAuthMiddleware } from "./authMiddleware.js"; export { JwtStrategy } from "./strategies/jwtStrategy.js"; export { OauthStrategy } from "./strategies/oauthStrategy.js"; //# sourceMappingURL=index.js.map