crbro-memory 2.2.0 → 2.3.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.
- package/README.md +413 -391
- package/bin/crbro.mjs +151 -1
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +45 -0
- package/dist/server.js.map +1 -1
- package/package.json +62 -62
package/package.json
CHANGED
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "crbro-memory",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"mcpName": "io.github.Octonove/crbro-memory",
|
|
5
|
-
"description": "CRBRO — Persistent neural memory for AI. A biological file-based MCP server that gives your AI long-term memory across sessions.",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"bin": {
|
|
9
|
-
"crbro-memory": "bin/crbro.mjs"
|
|
10
|
-
},
|
|
11
|
-
"scripts": {
|
|
12
|
-
"build": "tsc",
|
|
13
|
-
"dev": "tsc --watch",
|
|
14
|
-
"start": "node dist/index.js",
|
|
15
|
-
"test": "vitest run",
|
|
16
|
-
"test:watch": "vitest",
|
|
17
|
-
"prepublishOnly": "npm run build",
|
|
18
|
-
"mcpb": "node scripts/build-mcpb.mjs",
|
|
19
|
-
"mcpb:verify": "node scripts/verify-mcpb.mjs",
|
|
20
|
-
"bench": "node benchmarks/retrieval/run.mjs && node benchmarks/security/run.mjs"
|
|
21
|
-
},
|
|
22
|
-
"keywords": [
|
|
23
|
-
"mcp",
|
|
24
|
-
"memory",
|
|
25
|
-
"ai",
|
|
26
|
-
"persistent-memory",
|
|
27
|
-
"model-context-protocol",
|
|
28
|
-
"llm",
|
|
29
|
-
"synthetica",
|
|
30
|
-
"semantic-search",
|
|
31
|
-
"embeddings"
|
|
32
|
-
],
|
|
33
|
-
"author": {
|
|
34
|
-
"name": "Octonove",
|
|
35
|
-
"url": "https://github.com/Octonove"
|
|
36
|
-
},
|
|
37
|
-
"license": "MIT",
|
|
38
|
-
"repository": {
|
|
39
|
-
"type": "git",
|
|
40
|
-
"url": "git+https://github.com/Octonove/crbro-memory.git"
|
|
41
|
-
},
|
|
42
|
-
"engines": {
|
|
43
|
-
"node": ">=18.0.0"
|
|
44
|
-
},
|
|
45
|
-
"files": [
|
|
46
|
-
"dist/",
|
|
47
|
-
"bin/",
|
|
48
|
-
"hooks/",
|
|
49
|
-
"README.md",
|
|
50
|
-
"LICENSE"
|
|
51
|
-
],
|
|
52
|
-
"dependencies": {
|
|
53
|
-
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
54
|
-
"@orama/orama": "^3.1.18",
|
|
55
|
-
"zod": "^4.4.3"
|
|
56
|
-
},
|
|
57
|
-
"devDependencies": {
|
|
58
|
-
"@types/node": "^25.6.0",
|
|
59
|
-
"typescript": "^6.0.3",
|
|
60
|
-
"vitest": "^4.1.5"
|
|
61
|
-
}
|
|
62
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "crbro-memory",
|
|
3
|
+
"version": "2.3.1",
|
|
4
|
+
"mcpName": "io.github.Octonove/crbro-memory",
|
|
5
|
+
"description": "CRBRO — Persistent neural memory for AI. A biological file-based MCP server that gives your AI long-term memory across sessions.",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"crbro-memory": "bin/crbro.mjs"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "tsc",
|
|
13
|
+
"dev": "tsc --watch",
|
|
14
|
+
"start": "node dist/index.js",
|
|
15
|
+
"test": "vitest run",
|
|
16
|
+
"test:watch": "vitest",
|
|
17
|
+
"prepublishOnly": "npm run build",
|
|
18
|
+
"mcpb": "node scripts/build-mcpb.mjs",
|
|
19
|
+
"mcpb:verify": "node scripts/verify-mcpb.mjs",
|
|
20
|
+
"bench": "node benchmarks/retrieval/run.mjs && node benchmarks/security/run.mjs"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"mcp",
|
|
24
|
+
"memory",
|
|
25
|
+
"ai",
|
|
26
|
+
"persistent-memory",
|
|
27
|
+
"model-context-protocol",
|
|
28
|
+
"llm",
|
|
29
|
+
"synthetica",
|
|
30
|
+
"semantic-search",
|
|
31
|
+
"embeddings"
|
|
32
|
+
],
|
|
33
|
+
"author": {
|
|
34
|
+
"name": "Octonove",
|
|
35
|
+
"url": "https://github.com/Octonove"
|
|
36
|
+
},
|
|
37
|
+
"license": "MIT",
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "git+https://github.com/Octonove/crbro-memory.git"
|
|
41
|
+
},
|
|
42
|
+
"engines": {
|
|
43
|
+
"node": ">=18.0.0"
|
|
44
|
+
},
|
|
45
|
+
"files": [
|
|
46
|
+
"dist/",
|
|
47
|
+
"bin/",
|
|
48
|
+
"hooks/",
|
|
49
|
+
"README.md",
|
|
50
|
+
"LICENSE"
|
|
51
|
+
],
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
54
|
+
"@orama/orama": "^3.1.18",
|
|
55
|
+
"zod": "^4.4.3"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@types/node": "^25.6.0",
|
|
59
|
+
"typescript": "^6.0.3",
|
|
60
|
+
"vitest": "^4.1.5"
|
|
61
|
+
}
|
|
62
|
+
}
|