Stellarion
Tools

stellarion_memory_list

Browse all stored memories with optional tag and category filtering

Lists memories in the store with optional filtering by tags and category. Use this to browse what's been recorded, audit memory quality, or find memories to clean up.

When to Use

  • You want to see all stored memories for the project
  • You want to browse memories by tag or category
  • You are auditing or cleaning up the memory store
  • You want to paginate through a large collection of memories

Parameters

ParameterTypeRequiredDefaultDescription
tagsarraynoFilter to memories with these tags
categorystringnoFilter to a specific category
limitnumberno50Maximum number of results per page
offsetnumberno0Number of results to skip (for pagination)

Examples

List all memories

Natural language:

Show me all stored memories

MCP call:

{
  "tool": "stellarion_memory_list",
  "arguments": {}
}

List debugging memories

Natural language:

Show me all debugging memories

MCP call:

{
  "tool": "stellarion_memory_list",
  "arguments": {
    "category": "debugging"
  }
}

List memories by tag

Natural language:

Show me all memories tagged with "auth"

MCP call:

{
  "tool": "stellarion_memory_list",
  "arguments": {
    "tags": ["auth"]
  }
}

Paginate through results

Natural language:

Show me the next 50 memories after the first page

MCP call:

{
  "tool": "stellarion_memory_list",
  "arguments": {
    "limit": 50,
    "offset": 50
  }
}

Output Format

Returns a list of memories:

  • id — Memory ID
  • content — Memory content (may be truncated in list view)
  • tags — Associated tags
  • category — Category label
  • createdAt — Creation timestamp
  • valid — Whether the memory is active
  • total — Total number of matching memories (for pagination)

Tips

  • Use this for periodic memory housekeeping — find and invalidate outdated entries.
  • Combine tags and category filters to narrow the list.
  • Use offset and limit to paginate through large memory stores.