delete_observations
Remove specific observations from entities in the knowledge graph to maintain accurate and up-to-date data within the MCP DuckDB Knowledge Graph Memory Server.
Instructions
Delete specific observations from entities in the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deletions | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deletions": {
"items": {
"additionalProperties": false,
"properties": {
"contents": {
"description": "An array of observations to delete",
"items": {
"type": "string"
},
"type": "array"
},
"entityName": {
"description": "The name of the entity containing the observations",
"type": "string"
}
},
"required": [
"entityName",
"contents"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"deletions"
],
"type": "object"
}