UNPKG

@wonderwhy-er/desktop-commander

Version:

MCP server for terminal operations and file editing

15 lines (14 loc) 455 B
/** * Integration file showing how to integrate REPL functionality * with the Claude Server Commander */ interface ServerInterface { registerCommands: (commands: Record<string, Function>) => void; } /** * Integrates REPL functionality with the server * @param server - Server instance * @param terminalManager - Terminal manager instance */ export declare function integrateREPL(server: ServerInterface, terminalManager: any): void; export {};