Elasticsearch Knowledge Graph for MCP

by j3k0

add_observations

Add observations to an existing entity in knowledge graph (memory)

Input Schema

NameRequiredDescriptionDefault
memory_zoneNoOptional memory zone where the entity is stored. If not specified, uses the default zone.
nameYesName of entity to add observations to
observationsYesObservations to add to the entity

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "memory_zone": { "description": "Optional memory zone where the entity is stored. If not specified, uses the default zone.", "type": "string" }, "name": { "description": "Name of entity to add observations to", "type": "string" }, "observations": { "description": "Observations to add to the entity", "items": { "type": "string" }, "type": "array" } }, "required": [ "name", "observations" ], "type": "object" }