getRecentMessages
Retrieve the most recent messages from short-term memory, filtered by importance level or limited by a specified count, using the Cursor10x Memory System to maintain context awareness.
Instructions
Retrieves recent messages from the short-term memory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
importance | No | Filter by importance level (low, medium, high) | |
limit | No | Maximum number of messages to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"importance": {
"description": "Filter by importance level (low, medium, high)",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of messages to retrieve",
"type": "number"
}
},
"type": "object"
}