/** * Meta-MCP Server management commands */ import type { CommandContext, CommandResult, ServerOptions } from '../types/cli-types.js'; /** * Start the Meta-MCP Server */ export declare function startServerCommand(options: ServerOptions, context: CommandContext): Promise; /** * Stop the Meta-MCP Server */ export declare function stopServerCommand(_options: ServerOptions, context: CommandContext): Promise; /** * Get Meta-MCP Server status */ export declare function statusServerCommand(_options: ServerOptions, context: CommandContext): Promise; /** * Test Meta-MCP Server connection */ export declare function testServerCommand(options: ServerOptions, context: CommandContext): Promise; /** * Start Meta-MCP Server in development mode */ export declare function devServerCommand(_options: ServerOptions, context: CommandContext): Promise; //# sourceMappingURL=server.d.ts.map