UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with working MCP integration, multi-provider support, and professional CLI. Built-in tools operational, 58+ external MCP servers discoverable. Connect to filesystem, GitHub, database operations, and more. Build, test, and

20 lines (19 loc) 622 B
/** * Complete Setup Integration for NeuroLink CLI * * Orchestrates the entire setup process: interactive wizard, environment management, * provider testing, and summary display. */ import { type SetupResult } from "./interactiveSetup.js"; /** * Run the complete interactive setup process */ export declare function runCompleteSetup(quiet?: boolean): Promise<SetupResult>; /** * Wrapper for config setup command */ export declare function configSetup(quiet?: boolean): Promise<void>; /** * Wrapper for config init command (alias for setup) */ export declare function configInit(quiet?: boolean): Promise<void>;