prune_memories
Permanently delete memories from the AGI MCP Server based on criteria such as age, importance, access count, and status to optimize memory storage and management.
Instructions
Permanently delete memories based on criteria
Input Schema
Name | Required | Description | Default |
---|---|---|---|
criteria | No |
Input Schema (JSON Schema)
{
"properties": {
"criteria": {
"properties": {
"max_access_count": {
"default": 2,
"description": "Maximum access count",
"type": "integer"
},
"max_age": {
"default": 1095,
"description": "Maximum age in days",
"type": "integer"
},
"min_importance": {
"default": 0.1,
"description": "Minimum importance threshold",
"type": "number"
},
"status": {
"default": "archived",
"description": "Memory status to prune",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}