@modelcontextprotocol/sdk
    Preparing search index...

    Variable SetLevelRequestParamsSchemaConst

    SetLevelRequestParamsSchema: ZodObject<
        extendShape<
            {
                _meta: ZodOptional<
                    ZodObject<
                        { progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>> },
                        "passthrough",
                        ZodTypeAny,
                        objectOutputType<
                            { progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>> },
                            ZodTypeAny,
                            "passthrough",
                        >,
                        objectInputType<
                            { progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>> },
                            ZodTypeAny,
                            "passthrough",
                        >,
                    >,
                >;
            },
            {
                level: ZodEnum<
                    [
                        "debug",
                        "info",
                        "notice",
                        "warning",
                        "error",
                        "critical",
                        "alert",
                        "emergency",
                    ],
                >;
            },
        >,
        "strip",
        ZodTypeAny,
        {
            _meta?: objectOutputType<
                { progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>> },
                ZodTypeAny,
                "passthrough",
            >;
            level:
                | "error"
                | "debug"
                | "info"
                | "notice"
                | "warning"
                | "critical"
                | "alert"
                | "emergency";
        },
        {
            _meta?: objectInputType<
                { progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>> },
                ZodTypeAny,
                "passthrough",
            >;
            level:
                | "error"
                | "debug"
                | "info"
                | "notice"
                | "warning"
                | "critical"
                | "alert"
                | "emergency";
        },
    > = ...

    Parameters for a logging/setLevel request.