UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio

27 lines (26 loc) 774 B
/** * Server CLI Commands for NeuroLink * Implements HTTP server management commands */ import type { CommandModule } from "yargs"; /** * Server CLI command factory */ export declare class ServerCommandFactory { /** * Create the main server command with subcommands */ static createServerCommands(): CommandModule; private static buildStartOptions; private static buildStopOptions; private static buildStatusOptions; private static buildOpenAPIOptions; private static buildRoutesOptions; private static buildConfigOptions; private static executeStart; private static executeStop; private static executeStatus; private static executeOpenAPI; private static executeRoutes; private static executeConfig; }