/** * Error Transformer * Transforms errors to MCP-compatible format */ import { McpError } from '@modelcontextprotocol/sdk/types.js'; export declare class ErrorTransformer { /** * Transform any error to MCP error */ transform(error: unknown): McpError; /** * Map HTTP status code to MCP error code */ private mapErrorCode; } //# sourceMappingURL=error-transformer.d.ts.map