/** * Stdio MCP Server * Runs MCP server with stdio transport for local integrations (Claude Desktop, NPX, etc.) */ import type { StdioServerOptions } from './types.js'; /** * Start MCP server in stdio mode * Uses stdin/stdout for communication with MCP clients */ export declare function startStdioServer(options: StdioServerOptions): Promise; //# sourceMappingURL=stdio.d.ts.map