get_cursor_memories
Retrieve saved Cursor IDE memories filtered by category or tag to access organized conversation history and technical documentation.
Instructions
Retrieve saved Cursor memories by category or tag
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Filter by category | |
| limit | No | Maximum number of memories to return | |
| tag | No | Filter by tag |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Filter by category",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of memories to return",
"type": "number"
},
"tag": {
"description": "Filter by tag",
"type": "string"
}
},
"type": "object"
}