Mneno provides built-in tools for exporting memories to JSON, importing them back, and creating timestamped backups. This is essential for data migration, persistence, and disaster recovery.Documentation Index
Fetch the complete documentation index at: https://mneno.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Exporting Memories
You can export your entire memory store to a JSON payload or directly to a file.Importing Memories
Importing allows you to load memories from a previous export. Mneno supports several import modes to handle conflicting IDs:Import Modes
| Mode | Description |
|---|---|
append | Add memories; if an ID exists, a new unique ID is generated for the copy. |
replace | Clear the current store first, then import everything. |
skip_existing | Keep existing memories; don’t import anything with a conflicting ID. |
overwrite | Replace existing memories with imported ones if they share the same ID. |
Backups
Backups are a specialized form of export that use timestamped filenames by default.Restore
Restoring is a shortcut for areplace or append import from a backup file.