UNPKG

fusion-mcp-cli

Version:

CLI tool for Fusion MCP Hub - Manage custom and community MCP servers. Web App: https://fusion-mcp-hub.vercel.app (General) | https://fusion-mcp-prod.isc-code-connect.dal.app.cirrus.ibm.com (IBM)

38 lines 903 B
export interface Config { apiUrl?: string; apiToken?: string; currentWorkspace?: string; } /** * Read configuration from file */ export declare function readConfig(): Config; /** * Write configuration to file */ export declare function writeConfig(config: Config): void; /** * Update specific config value */ export declare function updateConfig(key: keyof Config, value: string): void; /** * Get specific config value */ export declare function getConfig(key: keyof Config): string | undefined; /** * Clear all configuration */ export declare function clearConfig(): void; /** * Check if user is authenticated */ export declare function isAuthenticated(): boolean; /** * Get API URL with fallback to default */ export declare function getApiUrl(): string; /** * Get API token */ export declare function getApiToken(): string | undefined; //# sourceMappingURL=config.d.ts.map