delete_relations
Remove specific relations between entities in the Memento MCP server while preserving the entities themselves, ensuring clean and precise data management.
Instructions
Remove specified relations between entities without deleting the entities themselves.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
relations | Yes | Array of relations to delete. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"relations": {
"description": "Array of relations to delete.",
"items": {
"additionalProperties": false,
"properties": {
"from": {
"description": "Source entity name.",
"type": "string"
},
"relationType": {
"description": "Type of the relation to remove.",
"type": "string"
},
"to": {
"description": "Target entity name.",
"type": "string"
}
},
"required": [
"from",
"to",
"relationType"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"relations"
],
"type": "object"
}