@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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shodh/memory-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.90",
|
|
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",
|
|
@@ -11,6 +11,9 @@
|
|
|
11
11
|
"scripts": {
|
|
12
12
|
"start": "bun run index.ts",
|
|
13
13
|
"build": "bun build index.ts --outdir dist --target node",
|
|
14
|
+
"test": "vitest run",
|
|
15
|
+
"test:watch": "vitest",
|
|
16
|
+
"test:coverage": "vitest run --coverage",
|
|
14
17
|
"postinstall": "node scripts/postinstall.cjs",
|
|
15
18
|
"prepublishOnly": "npm run build"
|
|
16
19
|
},
|
|
@@ -22,6 +25,10 @@
|
|
|
22
25
|
"dependencies": {
|
|
23
26
|
"@modelcontextprotocol/sdk": "^1.24.0"
|
|
24
27
|
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@vitest/coverage-v8": "^2.1.9",
|
|
30
|
+
"vitest": "^2.1.8"
|
|
31
|
+
},
|
|
25
32
|
"keywords": [
|
|
26
33
|
"mcp",
|
|
27
34
|
"model-context-protocol",
|
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 = '
|
|
14
|
+
const VERSION = require('../package.json').version;
|
|
15
15
|
const REPO = 'varun29ankuS/shodh-memory';
|
|
16
16
|
const BIN_DIR = path.join(__dirname, '..', 'bin');
|
|
17
17
|
|