import type { Readable, Writable } from "node:stream"; import { type McpServerResult } from "../../mcp/index.js"; export interface McpStartOptions { configPath: string; libraryPath?: string; stdin?: Readable; stdout?: Writable; } /** * Start MCP stdio server. * * @param options - MCP server options * @returns MCP server result with dispose function */ export declare function mcpStart(options: McpStartOptions): Promise; //# sourceMappingURL=mcp.d.ts.map