MCP Memory LibSQL

create_entities

Generate new entities with structured data, including observations, optional embeddings, and relations, for efficient storage and similarity search in the MCP Memory LibSQL system.

Instructions

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" }

You must be authenticated.

Other Tools from MCP Memory LibSQL

Related Tools

ID: x61nj65niz