Elasticsearch Knowledge Graph for MCP

by j3k0

delete_entities

Delete entities from knowledge graph (memory)

Input Schema

NameRequiredDescriptionDefault
cascade_relationsNoWhether to delete relations involving these entities (default: true)
memory_zoneNoOptional memory zone specifier. If provided, entities will be deleted from this zone.
namesYesNames of entities to delete

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "cascade_relations": { "default": true, "description": "Whether to delete relations involving these entities (default: true)", "type": "boolean" }, "memory_zone": { "description": "Optional memory zone specifier. If provided, entities will be deleted from this zone.", "type": "string" }, "names": { "description": "Names of entities to delete", "items": { "type": "string" }, "type": "array" } }, "required": [ "names" ], "type": "object" }