You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
subcommand present. Each subcommand has its own --db. Added CLI
parsing tests.
Feature was only available via MCP tools; now accessible from CLI.
delete archived entities and VACUUM to reclaim disk space.
Also added mimir_purge MCP tool with destructiveHint.
"description": "Permanently delete all archived entities and run VACUUM to reclaim disk space. This is the only operation that actually removes entities \u2014 prune/forget only soft-archive. Archived entities are DELETED and NOT RECOVERABLE. Supports dry_run=true to preview first.",
1125
+
"inputSchema": {
1126
+
"type": "object",
1127
+
"properties": {
1128
+
"dry_run": {
1129
+
"type": "boolean",
1130
+
"default": false,
1131
+
"description": "If true, report what would be deleted without making changes"
1132
+
}
1133
+
},
1134
+
"required": []
1135
+
},
1136
+
"outputSchema": {
1137
+
"type": "object",
1138
+
"properties": {
1139
+
"entities_deleted": {
1140
+
"type": "integer",
1141
+
"description": "Number of archived entities permanently deleted"
1142
+
},
1143
+
"bytes_freed": {
1144
+
"type": "integer",
1145
+
"description": "Bytes reclaimed after VACUUM (0 in dry-run mode)"
1146
+
},
1147
+
"dry_run": {
1148
+
"type": "boolean",
1149
+
"description": "Whether this was a dry run"
1150
+
},
1151
+
"completed_at_unix_ms": {
1152
+
"type": "integer",
1153
+
"description": "Completion timestamp"
1154
+
}
1155
+
}
1156
+
},
1157
+
"annotations": {
1158
+
"destructiveHint": true
1159
+
}
1160
+
},
1122
1161
{
1123
1162
"name": "mimir_migrate",
1124
1163
"description": "Migrate a v0.1.x Mimir database to the current v0.5.0 schema. Reads the old database, converts memories to the entity model, and merges into the current database. Use this once per legacy database during upgrade.",
0 commit comments