Variable McpUiRequestDisplayModeRequestSchemaConst
McpUiRequestDisplayModeRequestSchema: ZodObject<
{
method: ZodLiteral<"ui/request-display-mode">;
params: ZodObject<
{
mode: ZodUnion<
readonly [
ZodLiteral<"inline">,
ZodLiteral<"fullscreen">,
ZodLiteral<"pip">,
],
>;
},
$strip,
>;
},
$strip,
> = ...
Description
Request to change the display mode of the UI. The host will respond with the actual display mode that was set, which may differ from the requested mode if not supported.
See
app.App.requestDisplayMode for the method that sends this request