mcp-super-memory 0.10.0 → 0.10.1

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.
Files changed (2) hide show
  1. package/README.md +8 -2
  2. package/package.json +24 -2
package/README.md CHANGED
@@ -284,7 +284,7 @@ claude mcp add mcp-super-memory -e EMBEDDING_BACKEND=local -- npx -y mcp-super-m
284
284
  ### Manual / Development
285
285
 
286
286
  ```bash
287
- git clone https://github.com/donggyun112/mcp-super-memory
287
+ git clone https://github.com/donggyun112/super-memory
288
288
  cd super-memory
289
289
  pnpm install
290
290
  ```
@@ -411,6 +411,12 @@ The versioning approach also differs: A-MEM overwrites on evolution (current sta
411
411
 
412
412
  ---
413
413
 
414
+ ## Author
415
+
416
+ **donggyun112** — [github.com/donggyun112](https://github.com/donggyun112)
417
+
418
+ Repository: [donggyun112/super-memory](https://github.com/donggyun112/super-memory) · Issues & PRs welcome.
419
+
414
420
  ## License
415
421
 
416
- MIT
422
+ MIT © [donggyun112](https://github.com/donggyun112)
package/package.json CHANGED
@@ -1,11 +1,33 @@
1
1
  {
2
2
  "name": "mcp-super-memory",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
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": "./dist/index.js"
30
+ "mcp-super-memory": "dist/index.js"
9
31
  },
10
32
  "files": [
11
33
  "dist",