@whenmoon-afk/memory-mcp 2.1.1 → 2.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/dist/index.js +1 -1
- package/install.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
package/install.js
CHANGED
|
@@ -37,8 +37,8 @@ function getClaudeConfigPath() {
|
|
|
37
37
|
*/
|
|
38
38
|
function getMcpServerConfig() {
|
|
39
39
|
// Get the absolute path to the installed package
|
|
40
|
-
|
|
41
|
-
const serverPath = join(
|
|
40
|
+
// __dirname is already the package root (e.g., .../node_modules/@whenmoon-afk/memory-mcp/)
|
|
41
|
+
const serverPath = join(__dirname, 'dist', 'index.js');
|
|
42
42
|
|
|
43
43
|
// All platforms use node directly with the server path
|
|
44
44
|
return {
|