memento-mcp

by gannonh
Verified

create_entities

Efficiently create multiple entities in the Memento MCP knowledge graph, specifying names, types, observations, and optional metadata like timestamps and versions, to enhance semantic memory organization.

Instructions

Create multiple new entities in your Memento MCP knowledge graph memory system

Input Schema

NameRequiredDescriptionDefault
entitiesYes

Input Schema (JSON Schema)

{ "properties": { "entities": { "items": { "properties": { "changedBy": { "description": "Optional user/system identifier", "type": "string" }, "createdAt": { "description": "Optional creation timestamp", "type": "number" }, "entityType": { "description": "The type of the entity", "type": "string" }, "id": { "description": "Optional entity ID", "type": "string" }, "name": { "description": "The name of the entity", "type": "string" }, "observations": { "description": "An array of observation contents associated with the entity", "items": { "type": "string" }, "type": "array" }, "updatedAt": { "description": "Optional update timestamp", "type": "number" }, "validFrom": { "description": "Optional validity start timestamp", "type": "number" }, "validTo": { "description": "Optional validity end timestamp", "type": "number" }, "version": { "description": "Optional entity version", "type": "number" } }, "required": [ "name", "entityType", "observations" ], "type": "object" }, "type": "array" } }, "required": [ "entities" ], "type": "object" }
ID: r8o11c6krf