Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 370
fix: preserve experimental capability settings#721
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -492,8 +492,8 @@ export interface McpUiRequestTeardownNotification { | ||
| * @see {@link McpUiInitializeResult `McpUiInitializeResult`} for the initialization result that includes these capabilities | ||
| */ | ||
| export interface McpUiHostCapabilities { | ||
| /** @description Experimental features (structure TBD). */ | ||
| experimental?: {}; | ||
| /** @description Experimental features keyed by identifier. */ | ||
| experimental?: Record<string, object>; | ||
| /** @description Host supports opening external URLs. */ | ||
idosal marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| openLinks?: {}; | ||
| /** @description Host supports file downloads via ui/download-file. */ | ||
| @@ -536,8 +536,8 @@ export interface McpUiHostCapabilities { | ||
| * @see {@link McpUiInitializeRequest `McpUiInitializeRequest`} for the initialization request that includes these capabilities | ||
| */ | ||
| export interface McpUiAppCapabilities { | ||
| /** @description Experimental features (structure TBD). */ | ||
| experimental?: {}; | ||
| /** @description Experimental features keyed by identifier. */ | ||
| experimental?: Record<string, object>; | ||
| /** @description App exposes MCP-style tools that the host can call. */ | ||
| tools?: { | ||
| /** @description App supports tools/list_changed notifications. */ | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.