memory_forget
Remove specific memories by ID in Kratos-MCP’s AI coding memory system to manage and maintain accurate, isolated codebase context for efficient coding assistance.
Instructions
Delete a memory by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Memory ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Memory ID to delete",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}