@shodh/memory-mcp 0.1.6 → 0.1.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -2
- package/dist/index.js +2151 -544
- package/package.json +2 -2
- package/scripts/postinstall.cjs +2 -0
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<h1 align="center">Shodh-Memory MCP Server</h1>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<strong>v0.1.
|
|
8
|
+
<strong>v0.1.61</strong> | Persistent cognitive memory for AI agents
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
@@ -70,7 +70,7 @@ Config file locations:
|
|
|
70
70
|
| `SHODH_STREAM` | Enable/disable streaming ingestion | `true` |
|
|
71
71
|
| `SHODH_PROACTIVE` | Enable/disable proactive memory surfacing | `true` |
|
|
72
72
|
|
|
73
|
-
## MCP Tools
|
|
73
|
+
## MCP Tools (15 total)
|
|
74
74
|
|
|
75
75
|
| Tool | Description |
|
|
76
76
|
|------|-------------|
|
|
@@ -80,12 +80,15 @@ Config file locations:
|
|
|
80
80
|
| `context_summary` | Get categorized context for session bootstrap |
|
|
81
81
|
| `list_memories` | List all stored memories |
|
|
82
82
|
| `forget` | Delete a specific memory by ID |
|
|
83
|
+
| `forget_by_tags` | Delete memories matching any of the specified tags |
|
|
84
|
+
| `forget_by_date` | Delete memories within a date range |
|
|
83
85
|
| `memory_stats` | Get statistics about stored memories |
|
|
84
86
|
| `recall_by_tags` | Find memories by tag |
|
|
85
87
|
| `recall_by_date` | Find memories within a date range |
|
|
86
88
|
| `verify_index` | Check vector index health |
|
|
87
89
|
| `repair_index` | Repair orphaned memories |
|
|
88
90
|
| `consolidation_report` | View memory consolidation activity |
|
|
91
|
+
| `streaming_status` | Check WebSocket streaming connection status |
|
|
89
92
|
|
|
90
93
|
## REST API (for Developers)
|
|
91
94
|
|