delete_memory
Remove a specific memory from the Memory Box MCP Server by providing its unique ID, ensuring precise and efficient management of stored data.
Instructions
Delete a specific 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"
  ],
  "type": "object"
}