Elasticsearch Knowledge Graph for MCP

by j3k0

open_nodes

Get details about specific entities in knowledge graph (memory) and their relations

Input Schema

NameRequiredDescriptionDefault
memory_zoneNoOptional memory zone to retrieve entities from. If not specified, uses the default zone.
namesYesNames of entities to retrieve

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "memory_zone": { "description": "Optional memory zone to retrieve entities from. If not specified, uses the default zone.", "type": "string" }, "names": { "description": "Names of entities to retrieve", "items": { "type": "string" }, "type": "array" } }, "required": [ "names" ], "type": "object" }