Elasticsearch Knowledge Graph for MCP

by j3k0

create_entities

Create entities in knowledge graph (memory)

Input Schema

NameRequiredDescriptionDefault
entitiesYesList of entities to create
memory_zoneNoOptional memory zone to create entities in. If not specified, uses the default zone.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "entities": { "description": "List of entities to create", "items": { "properties": { "entityType": { "description": "Entity type", "type": "string" }, "name": { "description": "Entity name", "type": "string" }, "observations": { "description": "Observations about this entity", "items": { "type": "string" }, "type": "array" }, "relevanceScore": { "description": "Relevance score (higher = more important)", "type": "number" } }, "required": [ "name", "entityType" ], "type": "object" }, "type": "array" }, "memory_zone": { "description": "Optional memory zone to create entities in. If not specified, uses the default zone.", "type": "string" } }, "required": [ "entities" ], "type": "object" }