Elasticsearch Knowledge Graph for MCP

by j3k0

update_entities

Update entities in knowledge graph (memory)

Input Schema

NameRequiredDescriptionDefault
entitiesYesList of entities to update
memory_zoneNoOptional memory zone specifier. If provided, entities will be updated in this zone.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "entities": { "description": "List of entities to update", "items": { "properties": { "entityType": { "type": "string" }, "isImportant": { "type": "boolean" }, "name": { "type": "string" }, "observations": { "items": { "type": "string" }, "type": "array" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "memory_zone": { "description": "Optional memory zone specifier. If provided, entities will be updated in this zone.", "type": "string" } }, "required": [ "entities" ], "type": "object" }