localnest_memory_status
Check memory feature status, consent state, and backend compatibility for local-first AI agent operations.
Instructions
Return local memory feature status, consent state, and backend compatibility.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| response_format | No | json |
Implementation Reference
- src/mcp/tools/memory-workflow.js:48-62 (registration)The `localnest_memory_status` tool is registered in `src/mcp/tools/memory-workflow.js`. Its handler logic calls `memory.getStatus()` and formats the output with `normalizeMemoryStatus`.
registerJsonTool( ['localnest_memory_status'], { title: 'Memory Status', description: 'Return local memory feature status, consent state, and backend compatibility.', inputSchema: {}, annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false } }, async () => normalizeMemoryStatus(await memory.getStatus()) );