create_entities
Add multiple entities to a knowledge graph by specifying names, types, and associated observations for structured data organization within the Memory MCP Server.
Instructions
Create multiple new entities in the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entities | Yes |
Input Schema (JSON Schema)
{
"properties": {
"entities": {
"items": {
"properties": {
"entityType": {
"description": "The type of the entity",
"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"
}
},
"required": [
"name",
"entityType",
"observations"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"entities"
],
"type": "object"
}