@shodh/memory-mcp 0.1.70 → 0.1.71
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 +14 -3
- package/package.json +3 -3
- 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.70</strong> | Persistent cognitive memory for AI agents
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
- **Knowledge Graph**: Entity extraction and relationship tracking
|
|
31
31
|
- **Memory Consolidation**: Automatic decay, replay, and strengthening
|
|
32
32
|
- **1-Click Install**: Auto-downloads native server binary for your platform
|
|
33
|
-
- **Offline-First**: All models
|
|
33
|
+
- **Offline-First**: All models auto-downloaded on first run (~38MB total), no internet required after
|
|
34
34
|
- **Fast**: Sub-millisecond graph lookup, 30-50ms semantic search
|
|
35
35
|
|
|
36
36
|
## Installation
|
|
@@ -57,6 +57,17 @@ Config file locations:
|
|
|
57
57
|
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
|
|
58
58
|
- Linux: `~/.config/Claude/claude_desktop_config.json`
|
|
59
59
|
|
|
60
|
+
**Codex CLI** (`.codex/config.toml`):
|
|
61
|
+
```toml
|
|
62
|
+
[mcp_servers.shodh-memory]
|
|
63
|
+
startup_timeout_sec = 60
|
|
64
|
+
command = "npx"
|
|
65
|
+
args = ["-y", "@shodh/memory-mcp"]
|
|
66
|
+
env = { SHODH_API_KEY = "your-api-key-here" }
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
> **Note**: First run downloads the server binary (~15MB) plus embedding model (~23MB). The `startup_timeout_sec = 60` ensures enough time for initial setup.
|
|
70
|
+
|
|
60
71
|
**For Cursor/other MCP clients**: Similar configuration with the npx command.
|
|
61
72
|
|
|
62
73
|
## Environment Variables
|
|
@@ -169,7 +180,7 @@ Based on Cowan's working memory model:
|
|
|
169
180
|
## How It Works
|
|
170
181
|
|
|
171
182
|
1. **Install**: `npx -y @shodh/memory-mcp` downloads the package
|
|
172
|
-
2. **Auto-spawn**: On first run, downloads the native server binary (~15MB)
|
|
183
|
+
2. **Auto-spawn**: On first run, downloads the native server binary (~15MB) and embedding model (~23MB)
|
|
173
184
|
3. **Connect**: MCP client connects to the server via stdio
|
|
174
185
|
4. **Ready**: Start using `remember` and `recall` tools
|
|
175
186
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shodh/memory-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.71",
|
|
4
4
|
"mcpName": "io.github.varun29ankuS/shodh-memory",
|
|
5
5
|
"description": "MCP server for persistent AI memory - store and recall context across sessions",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"bin": {
|
|
9
|
-
"shodh-memory-mcp": "
|
|
9
|
+
"shodh-memory-mcp": "dist/index.js"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"start": "bun run index.ts",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"license": "Apache-2.0",
|
|
37
37
|
"repository": {
|
|
38
38
|
"type": "git",
|
|
39
|
-
"url": "https://github.com/varun29ankuS/shodh-memory"
|
|
39
|
+
"url": "git+https://github.com/varun29ankuS/shodh-memory.git"
|
|
40
40
|
},
|
|
41
41
|
"homepage": "https://github.com/varun29ankuS/shodh-memory#readme",
|
|
42
42
|
"bugs": {
|
package/scripts/postinstall.cjs
CHANGED
|
@@ -11,7 +11,7 @@ const path = require('path');
|
|
|
11
11
|
const https = require('https');
|
|
12
12
|
const { execSync } = require('child_process');
|
|
13
13
|
|
|
14
|
-
const VERSION = '0.1.
|
|
14
|
+
const VERSION = '0.1.70';
|
|
15
15
|
const REPO = 'varun29ankuS/shodh-memory';
|
|
16
16
|
const BIN_DIR = path.join(__dirname, '..', 'bin');
|
|
17
17
|
|