memory_stats
Retrieve statistics and analytics for stored memories to monitor usage patterns and track data insights within the Memora memory management system.
Instructions
Get statistics and analytics about stored memories.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Implementation Reference
- memora/server.py:1016-1019 (handler)The `memory_stats` MCP tool handler, which calls the `_get_statistics` helper function.
async def memory_stats() -> Dict[str, Any]: """Get statistics and analytics about stored memories.""" return _get_statistics()