mindpm 1.2.3 → 1.2.5

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.
Files changed (2) hide show
  1. package/README.md +14 -1
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -31,6 +31,18 @@ LLM: [queries mindpm] "Last session you finished the auth refactor.
31
31
  - **Context** — key-value pairs (tech stack, conventions, config)
32
32
  - **Sessions** — what was done, what's next
33
33
 
34
+ ## Kanban Board
35
+
36
+ mindpm includes a built-in Kanban UI. When the MCP server starts, it serves a web interface at `http://localhost:3131`.
37
+
38
+ Every `start_session` call returns a direct link to your project's board:
39
+
40
+ ```
41
+ Kanban board: http://localhost:3131?project=<project-id>
42
+ ```
43
+
44
+ The port is configurable via the `MINDPM_PORT` environment variable.
45
+
34
46
  ## Setup
35
47
 
36
48
  ### Install
@@ -58,7 +70,8 @@ Add to your MCP config (`~/.claude/claude_desktop_config.json` or similar):
58
70
  "mindpm": {
59
71
  "command": "mindpm",
60
72
  "env": {
61
- "MINDPM_DB_PATH": "~/.mindpm/memory.db"
73
+ "MINDPM_DB_PATH": "~/.mindpm/memory.db",
74
+ "MINDPM_PORT": "3131"
62
75
  }
63
76
  }
64
77
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mindpm",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "description": "Persistent project memory for LLMs via MCP. Never re-explain your project again.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -8,6 +8,7 @@
8
8
  "mindpm": "dist/index.js"
9
9
  },
10
10
  "scripts": {
11
+ "prepublishOnly": "npm run build",
11
12
  "build": "tsup src/index.ts --format esm --dts --clean && npm run build:ui",
12
13
  "build:ui": "cd ui && npm install && npm run build",
13
14
  "dev": "tsup src/index.ts --format esm --watch",