import type { MCPServerConfig } from '../types/config.js';
export type MCPTransportType = 'stdio' | 'websocket' | 'http';
export type MCPServer = Omit<MCPServerConfig, 'source'>;
export interface MCPTool {
    name: string;
    description?: string;
    inputSchema?: any;
    serverName: string;
}
export interface MCPInitResult {
    serverName: string;
    success: boolean;
    toolCount?: number;
    error?: string;
}
//# sourceMappingURL=mcp.d.ts.map