getRecentEpisodes
Retrieve recent episodes from the episodic memory of the Cursor10x MCP server. Specify a limit or filter by context to access relevant memory data for AI assistants.
Instructions
Retrieves recent episodes from the episodic memory
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | Filter by context | |
| limit | No | Maximum number of episodes to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"description": "Filter by context",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of episodes to retrieve",
"type": "number"
}
},
"type": "object"
}