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.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
tags | array | no | — | Filter to memories with these tags |
category | string | no | — | Filter to a specific category |
limit | number | no | 50 | Maximum number of results per page |
offset | number | no | 0 | Number of results to skip (for pagination) |
Natural language:
Show me all stored memories
MCP call:
{
"tool": "stellarion_memory_list",
"arguments": {}
}
Natural language:
Show me all debugging memories
MCP call:
{
"tool": "stellarion_memory_list",
"arguments": {
"category": "debugging"
}
}
Natural language:
Show me all memories tagged with "auth"
MCP call:
{
"tool": "stellarion_memory_list",
"arguments": {
"tags": ["auth"]
}
}
Natural language:
Show me the next 50 memories after the first page
MCP call:
{
"tool": "stellarion_memory_list",
"arguments": {
"limit": 50,
"offset": 50
}
}
Returns a list of memories:
tags and category filters to narrow the list.offset and limit to paginate through large memory stores.