create_entities
Add multiple entities to the Memento MCP knowledge graph memory system, specifying type, observations, and optional metadata for enhanced data organization and retrieval.
Instructions
Create multiple new entities in your Memento MCP knowledge graph memory system
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entities | Yes |
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"
}