delete_memory
Remove specific memory entries by their ID from the Memory MCP server. This tool ensures precise data management by permanently deleting selected memories.
Instructions
Delete a memory.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memory_id | Yes | The ID of the memory to delete |
Input Schema (JSON Schema)
{
"properties": {
"memory_id": {
"description": "The ID of the memory to delete",
"type": "integer"
}
},
"required": [
"memory_id"
],
"title": "deleteMemoryArguments",
"type": "object"
}