import { Server } from '@modelcontextprotocol/sdk/server/index.js'; import { BaseTransport } from './base.js'; /** * Stdio transport for MCP communication * Used when the server is launched by Claude Desktop or other MCP clients */ export declare class StdioTransport extends BaseTransport { private transport?; getType(): 'stdio'; start(server: Server): Promise; stop(): Promise; } //# sourceMappingURL=stdio.d.ts.map