Delete Agent Memory
delete_agent_memoryForget ONE durable memory entry by key — use it when a note you stored is now wrong, superseded, or was only ever scratch. Every entry is re-read into your context at the start of every future run, so leaving a stale one behind means re-grounding yourself in something false; deleting is the correction. Idempotent: deleting a key that is not there returns deleted:false, not an error. Also how you free a slot when the 200-entry cap is reached. This removes only YOUR memory note — it never touches a thesis, claim, report, or any financial fact. Tier: sp500+ (sample rejected).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | The memory key to forget. Discover keys with get_agent_memory (no key = list all). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | ||
| _meta | Yes | Provenance envelope — data lineage for every MCP response | |
| deleted | Yes | true if an entry existed and was removed; false if the key was already absent. |