optimize_memory
Optimize memory files by reorganizing and consolidating entries while preserving all data. Use AI-driven optimization to enhance efficiency and manage memory effectively within the MCP server.
Instructions
Manually optimize a memory file using AI to reorganize and consolidate entries while preserving all information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
force | No | Force optimization regardless of criteria | |
memory_file | No |
Input Schema (JSON Schema)
{
"properties": {
"force": {
"default": false,
"description": "Force optimization regardless of criteria",
"title": "Force",
"type": "boolean"
},
"memory_file": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Memory File"
}
},
"type": "object"
}