create_entities
Generate new entities, add observations, optional embeddings, and define relations for efficient knowledge storage and vector search within the MCP Memory LibSQL system.
Instructions
Create new entities with observations and optional embeddings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entities | Yes |
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"
}