localnest_memory_events
List recent memory events and track their promotion status to durable memory for local AI agent projects.
Instructions
List recently captured memory events and whether they were promoted into durable memory.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_path | No | ||
| limit | No | ||
| offset | No | ||
| response_format | No | json |
Implementation Reference
- src/mcp/tools/memory-store.js:221-227 (handler)The handler function for the localnest_memory_events tool, which calls memory.listEvents and normalizes the result.
async ({ project_path, limit, offset }) => normalizeMemoryEventsResult( await memory.listEvents({ projectPath: project_path, limit, offset }) ) - src/mcp/tools/memory-store.js:204-228 (registration)Registration of the localnest_memory_events tool.
registerJsonTool( ['localnest_memory_events'], { title: 'Memory Events', description: 'List recently captured memory events and whether they were promoted into durable memory.', inputSchema: { project_path: z.string().optional(), limit: z.number().int().min(1).max(200).default(20), offset: z.number().int().min(0).default(0) }, annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false } }, async ({ project_path, limit, offset }) => normalizeMemoryEventsResult( await memory.listEvents({ projectPath: project_path, limit, offset }) ) );