memory_save
Save code snippets, comments, or runtime traces with metadata to a project in Kratos-MCP. Organize entries with tags, importance levels, and paths for easy retrieval and context preservation.
Instructions
Save a memory document to the active project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
importance | No | Importance level | |
paths | No | File/directory paths (globs) | |
summary | Yes | Short, 1-2 line summary | |
tags | No | Tags for categorization | |
text | Yes | Full memory content | |
ttl | No | Time to live in seconds |
Input Schema (JSON Schema)
{
"properties": {
"importance": {
"description": "Importance level",
"maximum": 5,
"minimum": 1,
"type": "integer"
},
"paths": {
"description": "File/directory paths (globs)",
"items": {
"type": "string"
},
"type": "array"
},
"summary": {
"description": "Short, 1-2 line summary",
"type": "string"
},
"tags": {
"description": "Tags for categorization",
"items": {
"type": "string"
},
"type": "array"
},
"text": {
"description": "Full memory content",
"type": "string"
},
"ttl": {
"description": "Time to live in seconds",
"type": "integer"
}
},
"required": [
"summary",
"text"
],
"type": "object"
}