UNPKG

@civic/nexus-bridge

Version:

Stdio <-> HTTP/SSE MCP bridge with Civic auth handling

19 lines 610 B
/** * installer/index.ts * * Module for installing MCP Nexus Bridge into MCP-enabled applications' config */ /** * Array of available installer targets */ export declare const AVAILABLE_TARGETS: readonly ["claude-desktop", "claude-code"]; /** * Available installer targets type derived from the array */ export type InstallerTarget = typeof AVAILABLE_TARGETS[number]; /** * Run the installer for the specified target application * @param target The target application to install for */ export declare function runInstaller(target: InstallerTarget): Promise<void>; //# sourceMappingURL=index.d.ts.map