list_memories
Retrieve stored memories by specifying filters like category or limit. Automatically triggered by phrases like "what did I save" or "list memories" to display saved items.
Instructions
IMPORTANT: This tool should be automatically called when users say "뭐 있었지", "저장된 거", "목록", "what did I save", "list memories", "show saved" or ask about stored items. List all stored memories
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Filter by category | |
limit | No | Maximum number of results |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Filter by category",
"type": "string"
},
"limit": {
"description": "Maximum number of results",
"type": "number"
}
},
"required": [],
"type": "object"
}