qa-memorize-mcp 0.1.0 → 0.1.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/bin/run.js +2 -2
- package/package.json +12 -6
package/bin/run.js
CHANGED
|
@@ -28,7 +28,7 @@ try {
|
|
|
28
28
|
process.exit(1);
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
const binDir = path.join(pkgDir, 'bin');
|
|
31
|
+
const binDir = fs.realpathSync(path.join(pkgDir, 'bin'));
|
|
32
32
|
const binPath = path.join(binDir, entry.bin);
|
|
33
33
|
const modelDir = path.join(binDir, 'embedding_model');
|
|
34
34
|
|
|
@@ -47,7 +47,7 @@ const finalArgs = args.includes('--model-dir')
|
|
|
47
47
|
|
|
48
48
|
const result = spawnSync(binPath, finalArgs, {
|
|
49
49
|
stdio: 'inherit',
|
|
50
|
-
env: { ...process.env
|
|
50
|
+
env: { ...process.env },
|
|
51
51
|
});
|
|
52
52
|
|
|
53
53
|
process.exit(result.status ?? 1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qa-memorize-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "RAG-based memory MCP server with local ONNX embeddings",
|
|
5
5
|
"bin": {
|
|
6
6
|
"qa-memorize-mcp": "bin/run.js"
|
|
@@ -9,15 +9,21 @@
|
|
|
9
9
|
"postinstall": "node scripts/postinstall.mjs"
|
|
10
10
|
},
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"qa-memorize-mcp-win-x64": "0.1.
|
|
13
|
-
"qa-memorize-mcp-linux-x64": "0.1.
|
|
14
|
-
"qa-memorize-mcp-darwin-x64": "0.1.
|
|
15
|
-
"qa-memorize-mcp-darwin-arm64": "0.1.
|
|
12
|
+
"qa-memorize-mcp-win-x64": "0.1.2",
|
|
13
|
+
"qa-memorize-mcp-linux-x64": "0.1.2",
|
|
14
|
+
"qa-memorize-mcp-darwin-x64": "0.1.2",
|
|
15
|
+
"qa-memorize-mcp-darwin-arm64": "0.1.2"
|
|
16
16
|
},
|
|
17
17
|
"engines": {
|
|
18
18
|
"node": ">=18"
|
|
19
19
|
},
|
|
20
|
-
"keywords": [
|
|
20
|
+
"keywords": [
|
|
21
|
+
"mcp",
|
|
22
|
+
"memorize",
|
|
23
|
+
"rag",
|
|
24
|
+
"embedding",
|
|
25
|
+
"onnx"
|
|
26
|
+
],
|
|
21
27
|
"license": "MIT",
|
|
22
28
|
"author": "whereslow"
|
|
23
29
|
}
|