/** * LibreChat config generator. * * Config file: librechat.yaml * Format (YAML): * mcpServers: * name: * command: npx * args: [-y, @package/name] * env: * KEY: value * * Key differences from canonical: * - YAML format (not JSON) * - Otherwise uses the same mcpServers root key and field names */ import type { AppMetadata } from "@getmcp/core"; import { BaseGenerator } from "./base.js"; export declare class LibreChatGenerator extends BaseGenerator { app: AppMetadata; /** * Serialize to YAML format. */ serialize(config: Record): string; } //# sourceMappingURL=libre-chat.d.ts.map