Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/spec.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -549,12 +549,12 @@ export type McpUiToolVisibility = "model" | "app";
*/
export interface McpUiToolMeta {
/**
* URI of the UI resource to display for this tool.
* URI of the UI resource to display for this tool, if any.
* This is converted to `_meta["ui/resourceUri"]`.
*
* @example "ui://weather/widget.html"
*/
resourceUri: string;
resourceUri?: string;
/**
* @description Who can access this tool. Default: ["model", "app"]
* - "model": Tool visible to and callable by the agent
Expand Down
Loading