List Memory Keys
kv_listList the keys held in your namespace, optionally narrowed to those starting with a prefix. Use it to discover what earlier runs saved before deciding what to fetch with kv_get: it returns key names with their expiry and last-update time, never the stored values. Expired keys are filtered out, so what comes back is what kv_get would still find. There is no cursor and no offset - a namespace with more keys than the limit can only be walked by narrowing the prefix. Expiry is filtered after the limit is applied, so a page can come back short while live keys remain.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum keys to return. Default and maximum 100. | |
| prefix | No | Only keys starting with this prefix. | |
| namespace | Yes | Your private namespace. Pick a long unique string; it acts as the access key. |