security_gdpr_delete
Remove specific data types (memory, project, user) to comply with GDPR right to erasure. Specify target ID, user ID, and reason to ensure accurate and compliant deletion on Kratos-MCP.
Instructions
Delete data (GDPR right to erasure)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
reason | Yes | Reason for deletion | |
target_id | Yes | ID of target to delete | |
target_type | Yes | Type of data to delete | |
user_id | Yes | User requesting deletion |
Input Schema (JSON Schema)
{
"properties": {
"reason": {
"description": "Reason for deletion",
"type": "string"
},
"target_id": {
"description": "ID of target to delete",
"type": "string"
},
"target_type": {
"description": "Type of data to delete",
"enum": [
"memory",
"project",
"user"
],
"type": "string"
},
"user_id": {
"description": "User requesting deletion",
"type": "string"
}
},
"required": [
"target_type",
"target_id",
"user_id",
"reason"
],
"type": "object"
}