@shopana/novaposhta-mcp-server
Version:
MCP Server for Nova Poshta API integration with AI assistants
11 lines • 357 B
TypeScript
export type LogLevel = 'debug' | 'info' | 'warn' | 'error';
export type System = 'DevCentre';
export interface ServerConfig {
apiKey?: string;
baseUrl: string;
logLevel: LogLevel;
timeout: number;
system?: System;
}
export declare function loadConfig(overrides?: Partial<ServerConfig>): ServerConfig;
//# sourceMappingURL=config.d.ts.map