web_notes
Persist values across sessions with path-like keys: set, get, list by prefix, or delete notes to store state like last IDs, URL patterns, or checkpoints for later runs.
Instructions
Remember a value across sessions: set a key, get it back, list by prefix, delete it. Use for state needed in a later session, such as the last id seen, a learned URL pattern or a checkpoint. Keys are path-like (shop/last_id) so a prefix groups them.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | The note's name. A path-like key ("shop/last_id") groups notes for `list`. | |
| value | No | What to remember. Required for `set`; a string, so pass JSON if it has structure. | |
| action | No | get (default), set, list or delete. | |
| prefix | No | For `list`: only notes whose key starts with this. Empty lists everything. |