@vheins/local-memory-mcp 0.1.6 → 0.1.8

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/package.json CHANGED
@@ -1,16 +1,18 @@
1
1
  {
2
2
  "name": "@vheins/local-memory-mcp",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "MCP Local Memory Service for coding copilot agents",
5
5
  "mcpName": "io.github.vheins/local-memory-mcp",
6
6
  "type": "module",
7
7
  "main": "dist/server.js",
8
8
  "bin": {
9
9
  "local-memory-mcp": "dist/server.js",
10
+ "@vheins/local-memory-mcp": "dist/server.js",
10
11
  "mcp-memory-dashboard": "dist/dashboard/server.js"
11
12
  },
12
13
  "files": [
13
- "dist"
14
+ "dist",
15
+ "storage"
14
16
  ],
15
17
  "author": "Muhammad Rheza Alfin <m.rheza.alfin@gmail.com>",
16
18
  "license": "MIT",
@@ -19,6 +21,7 @@
19
21
  "prepare": "npm run build",
20
22
  "dev": "tsc --watch",
21
23
  "start": "node dist/server.js",
24
+ "start:mcp": "node dist/server.js",
22
25
  "dashboard": "node dist/dashboard/server.js",
23
26
  "both": "npm run start & npm run dashboard",
24
27
  "test": "vitest --run",
@@ -0,0 +1,5 @@
1
+ # Storage Directory
2
+
3
+ This directory contains the SQLite database file for MCP Local Memory.
4
+
5
+ The database file (`memory.db`) is excluded from git via `.gitignore`.
Binary file
Binary file