MCP Memory LibSQL

create_entities

Create new entities with observations and optional embeddings

Input Schema

NameRequiredDescriptionDefault
entitiesYes

Input Schema (JSON Schema)

{ "properties": { "entities": { "items": { "properties": { "embedding": { "description": "Optional vector embedding for similarity search", "items": { "type": "number" }, "type": "array" }, "entityType": { "type": "string" }, "name": { "type": "string" }, "observations": { "items": { "type": "string" }, "type": "array" }, "relations": { "description": "Optional relations to create with this entity", "items": { "properties": { "relationType": { "type": "string" }, "target": { "type": "string" } }, "required": [ "target", "relationType" ], "type": "object" }, "type": "array" } }, "required": [ "name", "entityType", "observations" ], "type": "object" }, "type": "array" } }, "required": [ "entities" ], "type": "object" }