MCP TypeScript SDK
    Preparing search index...

    Variable SetLevelRequestSchemaConst

    SetLevelRequestSchema: ZodObject<
        {
            method: ZodLiteral<"logging/setLevel">;
            params: ZodObject<
                {
                    _meta: ZodOptional<
                        ZodObject<
                            {
                                "io.modelcontextprotocol/related-task": ZodOptional<
                                    ZodObject<{ taskId: ZodString }, $strip>,
                                >;
                                progressToken: ZodOptional<ZodUnion<readonly [ZodString, ZodNumber]>>;
                            },
                            $loose,
                        >,
                    >;
                    level: ZodEnum<
                        {
                            alert: "alert";
                            critical: "critical";
                            debug: "debug";
                            emergency: "emergency";
                            error: "error";
                            info: "info";
                            notice: "notice";
                            warning: "warning";
                        },
                    >;
                },
                $strip,
            >;
        },
        $strip,
    > = ...

    A request from the client to the server, to enable or adjust logging.