delete_entity
Remove an entity and its associated data (observations, relations) from the MCP server mcp-memory-libsql. Input the entity name to ensure complete data deletion, enabling efficient entity management.
Instructions
Delete an entity and all its associated data (observations and relations)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the entity to delete |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the entity to delete",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}