read_graph
Retrieve the complete knowledge graph structure including memories, their relationships, decay scores, and statistical overview to analyze stored information and connections.
Instructions
Read the entire knowledge graph of memories and relations.
Returns the complete graph structure including all memories (with decay scores),
all relations between memories, and statistics about the graph.
Args:
status: Filter memories by status - "active", "promoted", "archived", or "all".
include_scores: Include decay scores and age in results.
limit: Maximum number of memories to return.
Returns:
Complete knowledge graph with memories, relations, and statistics.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_scores | No | ||
limit | No | ||
status | No | active |
Input Schema (JSON Schema)
{
"properties": {
"include_scores": {
"default": true,
"title": "Include Scores",
"type": "boolean"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"status": {
"default": "active",
"title": "Status",
"type": "string"
}
},
"type": "object"
}