@modelcontextprotocol/sdk
    Preparing search index...

    Variable ResourceListChangedNotificationSchemaConst

    ResourceListChangedNotificationSchema: ZodObject<
        extendShape<
            {
                method: ZodString;
                params: ZodOptional<
                    ZodObject<
                        { _meta: ZodOptional<ZodRecord<ZodString, ZodUnknown>> },
                        "passthrough",
                        ZodTypeAny,
                        objectOutputType<
                            { _meta: ZodOptional<ZodRecord<ZodString, ZodUnknown>> },
                            ZodTypeAny,
                            "passthrough",
                        >,
                        objectInputType<
                            { _meta: ZodOptional<ZodRecord<ZodString, ZodUnknown>> },
                            ZodTypeAny,
                            "passthrough",
                        >,
                    >,
                >;
            },
            { method: ZodLiteral<"notifications/resources/list_changed"> },
        >,
        "strip",
        ZodTypeAny,
        {
            method: "notifications/resources/list_changed";
            params?: objectOutputType<
                { _meta: ZodOptional<ZodRecord<ZodString, ZodUnknown>> },
                ZodTypeAny,
                "passthrough",
            >;
        },
        {
            method: "notifications/resources/list_changed";
            params?: objectInputType<
                { _meta: ZodOptional<ZodRecord<ZodString, ZodUnknown>> },
                ZodTypeAny,
                "passthrough",
            >;
        },
    > = ...

    An optional notification from the server to the client, informing it that the list of resources it can read from has changed. This may be issued by servers without any previous subscription from the client.