Stellarion
Tools

stellarion_memory_stats

View statistics about the memory store — total count, categories, and tag distribution

Returns aggregate statistics about the memory store: total memory count, breakdown by category, top tags, and active vs. invalidated counts. Useful for understanding the state of your project's knowledge base.

When to Use

  • You want a quick overview of what's in the memory store
  • You want to see which categories or tags are most used
  • You need to check how many memories are active vs. invalidated

Parameters

No parameters required.

Examples

Get memory statistics

Natural language:

How many memories do we have? What categories?

MCP call:

{
  "tool": "stellarion_memory_stats",
  "arguments": {}
}

Output Format

Returns aggregate statistics:

  • totalMemories — Total number of stored memories
  • activeMemories — Number of valid (non-invalidated) memories
  • invalidatedMemories — Number of invalidated memories
  • categories — Breakdown by category with counts
  • topTags — Most frequently used tags with counts

Tips

  • Run this periodically to check if the memory store needs cleanup.
  • If invalidatedMemories is high relative to totalMemories, it may be worth reviewing whether new memories have replaced the old ones.
  • Use the category and tag breakdown to plan stellarion_memory_list queries for targeted review.