/** * MCP Command Proxy * * A Model Context Protocol (MCP) server for proxying CLI commands and collecting logs * * @module mcp-command-proxy */ /** * Create an MCP server for proxying CLI commands */ export declare function createServer(options: { prefix: string; command: string; bufferSize?: number; port: number; }): Promise<{ stop: () => void; }>; export { CommandRunner, ProcessStatus, type LogEntry } from './utils/command-runner.js'; export { CircularBuffer } from './utils/buffer.js'; export * from './cli.js';