/** * MCP Apps (ext-apps) Module * * Server-side support for the MCP Apps Extension protocol (SEP-1865). * Provides types and handlers for bidirectional communication between * embedded widgets and AI hosts. * * @packageDocumentation */ export type { ExtAppsCallServerToolParams, ExtAppsUpdateModelContextParams, ExtAppsOpenLinkParams, ExtAppsDisplayMode, ExtAppsSetDisplayModeParams, ExtAppsCloseParams, ExtAppsLogLevel, ExtAppsLogParams, ExtAppsRegisterToolParams, ExtAppsUnregisterToolParams, ExtAppsHostCapabilities, ExtAppsWidgetCapabilities, ExtAppsAppInfo, ExtAppsHostContext, ExtAppsInitializeParams, ExtAppsInitializeResult, ExtAppsToolInputNotification, ExtAppsToolResultNotification, ExtAppsHostContextChangedNotification, ExtAppsCancelledNotification, ExtAppsJsonRpcRequest, ExtAppsJsonRpcResponse, ExtAppsJsonRpcNotification, ExtAppsJsonRpcMessage, ExtAppsErrorCode, } from './ext-apps.types'; export { EXT_APPS_ERROR_CODES } from './ext-apps.types'; export { ExtAppsMessageHandler, createExtAppsMessageHandler, type ExtAppsHandlerContext, type ExtAppsMessageHandlerOptions, ExtAppsError, ExtAppsMethodNotFoundError, ExtAppsInvalidParamsError, ExtAppsNotSupportedError, ExtAppsToolNotFoundError, } from './ext-apps.handler'; //# sourceMappingURL=index.d.ts.map