@modelcontextprotocol/sdk
    Preparing search index...

    Interface ResourceUpdatedNotification

    A notification from the server to the client, informing it that a resource has changed and may need to be read again. This should only be sent if the client previously sent a resources/subscribe request.

    interface ResourceUpdatedNotification {
        jsonrpc: "2.0";
        method: "notifications/resources/updated";
        params: { uri: string };
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    jsonrpc: "2.0"
    method: "notifications/resources/updated"
    params: { uri: string }

    Type Declaration

    • uri: string

      The URI of the resource that has been updated. This might be a sub-resource of the one that the client actually subscribed to.

      uri