Summary
docs/getting-started/quickstart.md tells users the agent should list three tools, but the server exposes four — memory_stats is missing from the list.
Where
docs/getting-started/quickstart.md line 37:
It should list store_memory, search_memory, and recall_memory.
The server (src/localmem_mcp/server.py) registers four tools: store_memory, search_memory, recall_memory, and memory_stats.
Impact
A user following the quickstart may think memory_stats doesn't exist, or may not know they can ask the agent to check which database/model is in use — which is the documented first step for "memories seem to be missing".
Suggested fix
Add memory_stats to the list (and to the "What just happened" section if it mentions the tool set).
Summary
docs/getting-started/quickstart.mdtells users the agent should list three tools, but the server exposes four —memory_statsis missing from the list.Where
docs/getting-started/quickstart.mdline 37:The server (
src/localmem_mcp/server.py) registers four tools:store_memory,search_memory,recall_memory, andmemory_stats.Impact
A user following the quickstart may think
memory_statsdoesn't exist, or may not know they can ask the agent to check which database/model is in use — which is the documented first step for "memories seem to be missing".Suggested fix
Add
memory_statsto the list (and to the "What just happened" section if it mentions the tool set).