configure_memory_optimization
Adjust memory optimization settings on Mode Manager MCP to enable auto-optimization based on file size, entry count, or time thresholds for improved performance.
Instructions
Configure memory optimization settings for auto-optimization behavior.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
auto_optimize | No | ||
entry_threshold | No | ||
memory_file | No | ||
size_threshold | No | ||
time_threshold_days | No |
Input Schema (JSON Schema)
{
"properties": {
"auto_optimize": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Auto Optimize"
},
"entry_threshold": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Entry Threshold"
},
"memory_file": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Memory File"
},
"size_threshold": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Size Threshold"
},
"time_threshold_days": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Time Threshold Days"
}
},
"type": "object"
}