get_clarity_historical_insights
Retrieve locally captured Microsoft Clarity snapshots for any date range, with explicit reporting of missing dates. Uses only saved local data; no API call and no backfill possible.
Instructions
Return locally-captured Clarity snapshots for each day from startDate to endDate (inclusive, YYYY-MM-DD, UTC). This reads ONLY local files previously written by capture_clarity_snapshot — it never calls the Clarity API and cannot retrieve any day that wasn't explicitly captured, because Clarity's own API has no historical endpoint and only ever exposes the last 1-3 days. The result explicitly lists which requested dates were found locally and which are missing, so gaps are visible rather than silently dropped. There is no way to backfill a missing date after the fact. Optional urlFilter post-filters each found day's rows by URL substring, same as on get_clarity_insights. For wide date ranges, passing urlFilter is recommended to avoid returning many uncompressed days at once.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endDate | Yes | Inclusive end date, YYYY-MM-DD (UTC). | |
| startDate | Yes | Inclusive start date, YYYY-MM-DD (UTC). | |
| urlFilter | No | Optional case-insensitive URL substring filter, same semantics as get_clarity_insights. |