forget
ActiveTool of com.memxus/memxus
Permanently delete one memory by UUID. When to use: user asks to remove outdated or incorrect context, or to free plan storage. When NOT: fix content → update (mode=replace); find the ID first → list_memories or recall. Requires delete OAuth scope. Non-idempotent: deleting the same memory_id twice fails. Errors: Memory not found, Not authorized to delete this memory. Side effects: removes the memory row and vector embedding with no recovery; invalidates plan cache. The target workspace is always the one the memory itself belongs to (echoed in resolved_workspace); optionally pass workspace: <name> as a safety confirmation — the call fails if the memory is not actually in that workspace.
Parameters schema
{
"type": "object",
"required": [
"memory_id"
],
"properties": {
"memory_id": {
"type": "string",
"format": "uuid",
"description": "UUID of the memory to delete. Copy from the id field in list_memories or recall. Must be deletable by the authenticated user."
},
"workspace": {
"type": "string",
"description": "To operate on a team workspace, pass its exact name, slug, or ID (e.g. \"Acme\"). Omit — or pass \"personal\" — for your personal memory (default). Every response echoes resolved_workspace so you can confirm where the operation actually happened. If the user mentions a project or team name in their message, check the memory://workspaces resource (or call list_collections) for the exact matching name BEFORE calling this tool, and pass it as workspace — do not ask the user to spell it out if it already matches one of their workspaces."
}
}
}Parent server
com.memxus/memxus
https://github.com/gpitrella/memxus-remote-mcp
2/7 registries