get_graph_at_time
Retrieve the state of a knowledge graph memory at a specific timestamp to analyze or restore its historical data efficiently.
Instructions
Get your Memento MCP knowledge graph memory as it existed at a specific point in time
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timestamp | Yes | The timestamp (in milliseconds since epoch) to query the graph at |
Input Schema (JSON Schema)
{
"properties": {
"timestamp": {
"description": "The timestamp (in milliseconds since epoch) to query the graph at",
"type": "number"
}
},
"required": [
"timestamp"
],
"type": "object"
}