-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathindex.ts
More file actions
28 lines (24 loc) · 815 Bytes
/
index.ts
File metadata and controls
28 lines (24 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
* Experimental MCP features.
*
* APIs in this module may change without notice in future versions.
* Use at your own risk.
*
* @module experimental
*/
// URL Elicitation - experimental feature introduced in MCP 2025-11-25
export {
// Schemas
ElicitRequestURLParamsSchema,
ElicitationCompleteNotificationParamsSchema,
ElicitationCompleteNotificationSchema,
// Types
type ElicitRequestURLParams,
type ElicitationCompleteNotificationParams,
type ElicitationCompleteNotification,
// Error class
UrlElicitationRequiredError
} from '../types.js';
// Re-export experimental feature classes
export { ExperimentalServerFeatures } from '../server/experimental.js';
export { ExperimentalClientFeatures, type ElicitationCompleteHandler } from '../client/experimental.js';