UNPKG

mcp-swagger-parser

Version:

Enterprise-grade OpenAPI/Swagger specification parser for Model Context Protocol (MCP) projects

21 lines 518 B
/** * OpenAPI specification normalizer */ import type { OpenAPISpec, ParserConfig } from '../types/index'; export declare class Normalizer { private config; constructor(config: ParserConfig); /** * Normalize OpenAPI specification */ normalize(spec: OpenAPISpec): Promise<OpenAPISpec>; /** * Normalize server configurations */ private normalizeServers; /** * Normalize path definitions */ private normalizePaths; } //# sourceMappingURL=normalizer.d.ts.map