@modelcontextprotocol/ext-apps - v0.2.2
    Preparing search index...

    Variable McpUiRequestDisplayModeRequestSchemaConst

    McpUiRequestDisplayModeRequestSchema: ZodObject<
        {
            method: ZodLiteral<"ui/request-display-mode">;
            params: ZodObject<
                {
                    mode: ZodUnion<
                        readonly [
                            ZodLiteral<"inline">,
                            ZodLiteral<"fullscreen">,
                            ZodLiteral<"pip">,
                        ],
                    >;
                },
                $strip,
            >;
        },
        $strip,
    > = ...

    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.

    app.App.requestDisplayMode for the method that sends this request