@shodh/memory-mcp 0.1.75 → 0.1.90
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 +68 -11
- package/dist/index.js +4545 -12925
- package/package.json +8 -1
- package/scripts/postinstall.cjs +1 -1
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.90</strong> | Persistent cognitive memory for AI agents
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
@@ -29,9 +29,11 @@
|
|
|
29
29
|
- **Semantic Search**: Find memories by meaning using MiniLM-L6 embeddings
|
|
30
30
|
- **Knowledge Graph**: Entity extraction and relationship tracking
|
|
31
31
|
- **Memory Consolidation**: Automatic decay, replay, and strengthening
|
|
32
|
+
- **Idempotent**: Content-hash dedup — identical memories are never stored twice
|
|
32
33
|
- **1-Click Install**: Auto-downloads native server binary for your platform
|
|
33
34
|
- **Offline-First**: All models auto-downloaded on first run (~38MB total), no internet required after
|
|
34
|
-
- **Fast**:
|
|
35
|
+
- **Fast**: <200ms API response, sub-millisecond graph lookup, 30-50ms semantic search
|
|
36
|
+
- **GTD Task Management**: Full todo system with projects, subtasks, comments, and reminders
|
|
35
37
|
|
|
36
38
|
## Installation
|
|
37
39
|
|
|
@@ -81,25 +83,80 @@ env = { SHODH_API_KEY = "your-api-key-here" }
|
|
|
81
83
|
| `SHODH_STREAM` | Enable/disable streaming ingestion | `true` |
|
|
82
84
|
| `SHODH_PROACTIVE` | Enable/disable proactive memory surfacing | `true` |
|
|
83
85
|
|
|
84
|
-
## MCP Tools (
|
|
86
|
+
## MCP Tools (47 total)
|
|
87
|
+
|
|
88
|
+
<details>
|
|
89
|
+
<summary><b>Memory</b> — Store, search, and manage memories</summary>
|
|
85
90
|
|
|
86
91
|
| Tool | Description |
|
|
87
92
|
|------|-------------|
|
|
88
|
-
| `remember` | Store a memory with optional type and
|
|
93
|
+
| `remember` | Store a memory with optional type, tags, and metadata |
|
|
89
94
|
| `recall` | Semantic search to find relevant memories |
|
|
90
95
|
| `proactive_context` | Auto-surface relevant memories for current context |
|
|
91
96
|
| `context_summary` | Get categorized context for session bootstrap |
|
|
92
97
|
| `list_memories` | List all stored memories |
|
|
98
|
+
| `read_memory` | Read full content of a specific memory by ID |
|
|
93
99
|
| `forget` | Delete a specific memory by ID |
|
|
94
|
-
| `
|
|
95
|
-
|
|
100
|
+
| `reinforce` | Reinforce a memory (boost importance) |
|
|
101
|
+
</details>
|
|
102
|
+
|
|
103
|
+
<details>
|
|
104
|
+
<summary><b>Todos (GTD)</b> — Task management with projects and subtasks</summary>
|
|
105
|
+
|
|
106
|
+
| Tool | Description |
|
|
107
|
+
|------|-------------|
|
|
108
|
+
| `add_todo` | Create a task with priority, due date, project, contexts |
|
|
109
|
+
| `list_todos` | List/search todos with semantic or GTD-style filtering |
|
|
110
|
+
| `update_todo` | Update task properties (status, priority, notes) |
|
|
111
|
+
| `complete_todo` | Mark a task as done (auto-creates next for recurring) |
|
|
112
|
+
| `delete_todo` | Permanently delete a task |
|
|
113
|
+
| `reorder_todo` | Move a task up or down within its status group |
|
|
114
|
+
| `list_subtasks` | List subtasks of a parent todo |
|
|
115
|
+
| `add_todo_comment` | Add a comment to a task (progress, resolution) |
|
|
116
|
+
| `list_todo_comments` | List all comments on a task |
|
|
117
|
+
| `update_todo_comment` | Edit an existing comment |
|
|
118
|
+
| `delete_todo_comment` | Delete a comment |
|
|
119
|
+
| `todo_stats` | Get todo statistics by status, overdue items |
|
|
120
|
+
</details>
|
|
121
|
+
|
|
122
|
+
<details>
|
|
123
|
+
<summary><b>Projects</b> — Organize todos into groups</summary>
|
|
124
|
+
|
|
125
|
+
| Tool | Description |
|
|
126
|
+
|------|-------------|
|
|
127
|
+
| `add_project` | Create a project with optional parent (sub-projects) |
|
|
128
|
+
| `list_projects` | List all projects with todo counts |
|
|
129
|
+
| `archive_project` | Archive a project (hidden but restorable) |
|
|
130
|
+
| `delete_project` | Permanently delete a project |
|
|
131
|
+
</details>
|
|
132
|
+
|
|
133
|
+
<details>
|
|
134
|
+
<summary><b>Reminders</b> — Time, duration, and context-triggered reminders</summary>
|
|
135
|
+
|
|
136
|
+
| Tool | Description |
|
|
137
|
+
|------|-------------|
|
|
138
|
+
| `set_reminder` | Set a reminder (time, duration, or keyword trigger) |
|
|
139
|
+
| `list_reminders` | List pending/triggered/dismissed reminders |
|
|
140
|
+
| `dismiss_reminder` | Acknowledge a triggered reminder |
|
|
141
|
+
</details>
|
|
142
|
+
|
|
143
|
+
<details>
|
|
144
|
+
<summary><b>System</b> — Health, backups, and diagnostics</summary>
|
|
145
|
+
|
|
146
|
+
| Tool | Description |
|
|
147
|
+
|------|-------------|
|
|
96
148
|
| `memory_stats` | Get statistics about stored memories |
|
|
97
|
-
| `
|
|
98
|
-
| `
|
|
99
|
-
| `
|
|
100
|
-
| `
|
|
149
|
+
| `verify_index` | Check vector index integrity |
|
|
150
|
+
| `repair_index` | Re-index orphaned memories |
|
|
151
|
+
| `token_status` | Get current session token usage |
|
|
152
|
+
| `reset_token_session` | Reset token counter for new session |
|
|
101
153
|
| `consolidation_report` | View memory consolidation activity |
|
|
102
|
-
| `
|
|
154
|
+
| `backup_create` | Create a backup of all memories |
|
|
155
|
+
| `backup_list` | List available backups |
|
|
156
|
+
| `backup_verify` | Verify backup integrity (SHA-256) |
|
|
157
|
+
| `backup_restore` | Restore from a backup |
|
|
158
|
+
| `backup_purge` | Purge old backups, keep most recent N |
|
|
159
|
+
</details>
|
|
103
160
|
|
|
104
161
|
## REST API (for Developers)
|
|
105
162
|
|