create_relations
Establish and define multiple relationships between entities in a knowledge graph, facilitating structured data organization and retrieval within the MCP DuckDB Knowledge Graph Memory Server.
Instructions
Create multiple new relations between entities in the knowledge graph. Relations should be in active voice
Input Schema
Name | Required | Description | Default |
---|---|---|---|
relations | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"relations": {
"items": {
"additionalProperties": false,
"properties": {
"from": {
"description": "The name of the entity where the relation starts",
"type": "string"
},
"relationType": {
"description": "The type of the relation",
"type": "string"
},
"to": {
"description": "The name of the entity where the relation ends",
"type": "string"
}
},
"required": [
"from",
"to",
"relationType"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"relations"
],
"type": "object"
}