becki-mcp 1.1.0
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/LICENSE +32 -0
- package/README.md +142 -0
- package/dist/core/ai-sessions.js +325 -0
- package/dist/core/db.js +221 -0
- package/dist/core/init.js +218 -0
- package/dist/core/project-activity.js +225 -0
- package/dist/core/runner.js +109 -0
- package/dist/index.js +3412 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "becki-mcp",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Becki Core — cross-platform memory layer for AI tools. MCP server that gives Claude, Cursor, Codex, ChatGPT, and any MCP-compatible client persistent memory across every session, project, and machine.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"becki",
|
|
7
|
+
"mcp",
|
|
8
|
+
"model-context-protocol",
|
|
9
|
+
"memory",
|
|
10
|
+
"ai",
|
|
11
|
+
"claude",
|
|
12
|
+
"cursor",
|
|
13
|
+
"codex",
|
|
14
|
+
"anthropic",
|
|
15
|
+
"neuravault",
|
|
16
|
+
"knowledge-graph",
|
|
17
|
+
"cli"
|
|
18
|
+
],
|
|
19
|
+
"homepage": "https://www.becki.io",
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/bdsantosDEV/becki-vault/issues",
|
|
22
|
+
"email": "support@becki.io"
|
|
23
|
+
},
|
|
24
|
+
"license": "UNLICENSED",
|
|
25
|
+
"author": {
|
|
26
|
+
"name": "BECKI.IO LLC",
|
|
27
|
+
"url": "https://www.becki.io"
|
|
28
|
+
},
|
|
29
|
+
"type": "module",
|
|
30
|
+
"main": "dist/index.js",
|
|
31
|
+
"bin": {
|
|
32
|
+
"becki-mcp": "dist/index.js"
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"dist/",
|
|
36
|
+
"README.md",
|
|
37
|
+
"LICENSE"
|
|
38
|
+
],
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=20.0.0"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsc",
|
|
44
|
+
"dev": "tsc --watch",
|
|
45
|
+
"start": "node dist/index.js",
|
|
46
|
+
"start:http": "BECKI_MCP_TRANSPORT=http node dist/index.js",
|
|
47
|
+
"eval": "node eval/eval-retrieval.mjs",
|
|
48
|
+
"prepublishOnly": "npm run build"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
52
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
53
|
+
"better-sqlite3": "^12.10.0",
|
|
54
|
+
"chokidar": "^5.0.0",
|
|
55
|
+
"simple-git": "^3.36.0"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@types/node": "^20.0.0",
|
|
59
|
+
"typescript": "^5.0.0"
|
|
60
|
+
}
|
|
61
|
+
}
|