Elasticsearch Knowledge Graph for MCP

by j3k0

mark_important

Mark entity as important in knowledge graph (memory) by boosting its relevance score

Input Schema

NameRequiredDescriptionDefault
auto_createNoWhether to automatically create the entity if it doesn't exist (default: false)
importantYesSet as important (true - multiply relevance by 10) or not (false - divide relevance by 10)
memory_zoneNoOptional memory zone specifier. If provided, entity will be marked in this zone.
nameYesEntity name

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "auto_create": { "default": false, "description": "Whether to automatically create the entity if it doesn't exist (default: false)", "type": "boolean" }, "important": { "description": "Set as important (true - multiply relevance by 10) or not (false - divide relevance by 10)", "type": "boolean" }, "memory_zone": { "description": "Optional memory zone specifier. If provided, entity will be marked in this zone.", "type": "string" }, "name": { "description": "Entity name", "type": "string" } }, "required": [ "name", "important" ], "type": "object" }