delete_observations
Remove specific observations from entities in the knowledge graph stored on the Memory MCP Server. Specify entity names and observations to delete for precise data management.
Instructions
Delete specific observations from entities in the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deletions | Yes |
Input Schema (JSON Schema)
{
"properties": {
"deletions": {
"items": {
"properties": {
"entityName": {
"description": "The name of the entity containing the observations",
"type": "string"
},
"observations": {
"description": "An array of observations to delete",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"entityName",
"observations"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"deletions"
],
"type": "object"
}