mcp-super-memory 0.10.0 → 0.10.2
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 +15 -6
- package/package.json +27 -2
package/README.md
CHANGED
|
@@ -256,7 +256,7 @@ Add to `claude_desktop_config.json`:
|
|
|
256
256
|
}
|
|
257
257
|
```
|
|
258
258
|
|
|
259
|
-
**Local embeddings (no API key required):**
|
|
259
|
+
**Local embeddings (no API key required) — bge-m3 recommended:**
|
|
260
260
|
```json
|
|
261
261
|
{
|
|
262
262
|
"mcpServers": {
|
|
@@ -264,27 +264,30 @@ Add to `claude_desktop_config.json`:
|
|
|
264
264
|
"command": "npx",
|
|
265
265
|
"args": ["-y", "mcp-super-memory"],
|
|
266
266
|
"env": {
|
|
267
|
-
"EMBEDDING_BACKEND": "local"
|
|
267
|
+
"EMBEDDING_BACKEND": "local",
|
|
268
|
+
"LOCAL_EMBEDDING_MODEL": "bge-m3"
|
|
268
269
|
}
|
|
269
270
|
}
|
|
270
271
|
}
|
|
271
272
|
}
|
|
272
273
|
```
|
|
273
274
|
|
|
275
|
+
> `bge-m3` (multilingual, recommended) **auto-downloads ~570MB on first run**, then caches. Omit `LOCAL_EMBEDDING_MODEL` for the lighter default (`fast-multilingual-e5-large`). Add `"SUPER_MEMORY_RERANK": "true"` to enable cross-encoder reranking (downloads a second model on first use).
|
|
276
|
+
|
|
274
277
|
### Claude Code
|
|
275
278
|
|
|
276
279
|
```bash
|
|
277
280
|
# OpenAI embeddings
|
|
278
281
|
claude mcp add mcp-super-memory -e OPENAI_API_KEY=your-openai-api-key -- npx -y mcp-super-memory
|
|
279
282
|
|
|
280
|
-
# Local embeddings (no API key required)
|
|
281
|
-
claude mcp add mcp-super-memory -e EMBEDDING_BACKEND=local -- npx -y mcp-super-memory
|
|
283
|
+
# Local embeddings (no API key required) — bge-m3 recommended (auto-downloads ~570MB on first run)
|
|
284
|
+
claude mcp add mcp-super-memory -e EMBEDDING_BACKEND=local -e LOCAL_EMBEDDING_MODEL=bge-m3 -- npx -y mcp-super-memory
|
|
282
285
|
```
|
|
283
286
|
|
|
284
287
|
### Manual / Development
|
|
285
288
|
|
|
286
289
|
```bash
|
|
287
|
-
git clone https://github.com/donggyun112/
|
|
290
|
+
git clone https://github.com/donggyun112/super-memory
|
|
288
291
|
cd super-memory
|
|
289
292
|
pnpm install
|
|
290
293
|
```
|
|
@@ -411,6 +414,12 @@ The versioning approach also differs: A-MEM overwrites on evolution (current sta
|
|
|
411
414
|
|
|
412
415
|
---
|
|
413
416
|
|
|
417
|
+
## Author
|
|
418
|
+
|
|
419
|
+
**donggyun112** — [github.com/donggyun112](https://github.com/donggyun112)
|
|
420
|
+
|
|
421
|
+
Repository: [donggyun112/super-memory](https://github.com/donggyun112/super-memory) · Issues & PRs welcome.
|
|
422
|
+
|
|
414
423
|
## License
|
|
415
424
|
|
|
416
|
-
MIT
|
|
425
|
+
MIT © [donggyun112](https://github.com/donggyun112)
|
package/package.json
CHANGED
|
@@ -1,17 +1,42 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-super-memory",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "N:M Associative Memory System for LLM Agents",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"mcp",
|
|
8
|
+
"memory",
|
|
9
|
+
"llm",
|
|
10
|
+
"agent",
|
|
11
|
+
"embeddings",
|
|
12
|
+
"knowledge-graph",
|
|
13
|
+
"associative-memory",
|
|
14
|
+
"rag",
|
|
15
|
+
"reranker",
|
|
16
|
+
"bge-m3"
|
|
17
|
+
],
|
|
18
|
+
"homepage": "https://github.com/donggyun112/super-memory#readme",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/donggyun112/super-memory.git"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/donggyun112/super-memory/issues"
|
|
25
|
+
},
|
|
26
|
+
"author": "donggyun112 (https://github.com/donggyun112)",
|
|
27
|
+
"license": "MIT",
|
|
6
28
|
"main": "dist/index.js",
|
|
7
29
|
"bin": {
|
|
8
|
-
"mcp-super-memory": "
|
|
30
|
+
"mcp-super-memory": "dist/index.js"
|
|
9
31
|
},
|
|
10
32
|
"files": [
|
|
11
33
|
"dist",
|
|
12
34
|
"README.md",
|
|
13
35
|
"LICENSE"
|
|
14
36
|
],
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=20"
|
|
39
|
+
},
|
|
15
40
|
"scripts": {
|
|
16
41
|
"build": "tsc",
|
|
17
42
|
"prepare": "tsc",
|