enquire-mcp API reference - v3.9.0-rc.4
    Preparing search index...

    Function getRecentEdits

    • Recently-modified notes — the "what changed lately" view.

      Lighter-weight than listNotes when the caller doesn't need tag filtering. Sorted by mtime descending. Use since_minutes for tight windows ("what did I edit in the last hour?") rather than since_date.

      Parameters

      • vault: Vault

        The vault to scan.

      • args: { folder?: string; limit?: number; since_minutes?: number }

        All optional. since_minutes is a sliding window in minutes; omit for "everything, newest first". limit defaults to 20. folder restricts the scan.

      Returns Promise<NoteSummary[]>

      A NoteSummary array sorted by mtime desc.

      If folder resolves outside the vault.

      // What did I edit in the last 2 hours?
      const recent = await getRecentEdits(vault, { since_minutes: 120, limit: 10 });