get_relation_history
Retrieve the version history of a specific relation between two entities in a knowledge graph, enabling temporal analysis and tracking changes over time.
Instructions
Get the version history of a relation from your Memento MCP knowledge graph memory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | Yes | The name of the entity where the relation starts | |
relationType | Yes | The type of the relation | |
to | Yes | The name of the entity where the relation ends |
Input Schema (JSON Schema)
{
"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"
}