site_memory
Manage persistent website memory: read, write, or list custom notes on scraping details like wait times, selectors, and login cookies. Memory auto-accumulates from each scrape and survives restarts.
Instructions
Read, write, or list persistent memory about websites. Memory auto-accumulates on every scrape (structure, performance, facets). Use this to add custom notes ("this site needs 5s wait for lazy load", "products use .wat-product-tile selector", "requires login cookies for pricing"). Memory persists across sessions and server restarts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | Optional key to set a specific field (e.g., "waitTime", "customSelector"). Used with "write". | |
| url | No | Any URL on the domain (required for read/write/delete). | |
| note | No | A note to add when action is "write". Will be appended to existing notes. | |
| value | No | Value for the key. Used with "write" when "key" is provided. | |
| action | Yes | "read" a domain's memory, "write" a note, "list" all remembered sites, or "delete" a domain's memory. |