mcp-super-memory 0.10.1 → 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 +7 -4
- package/package.json +4 -1
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,21 +264,24 @@ 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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
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
6
|
"keywords": [
|
|
@@ -34,6 +34,9 @@
|
|
|
34
34
|
"README.md",
|
|
35
35
|
"LICENSE"
|
|
36
36
|
],
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=20"
|
|
39
|
+
},
|
|
37
40
|
"scripts": {
|
|
38
41
|
"build": "tsc",
|
|
39
42
|
"prepare": "tsc",
|