mindpm 1.2.4 → 1.2.6
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/README.md +14 -1
- package/dist/index.js +1 -2
- package/package.json +1 -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/dist/index.js
CHANGED
|
@@ -920,8 +920,7 @@ function openBrowser(url) {
|
|
|
920
920
|
var __filename = fileURLToPath(import.meta.url);
|
|
921
921
|
var __dirname = dirname2(__filename);
|
|
922
922
|
function resolveStaticDir() {
|
|
923
|
-
|
|
924
|
-
return join(scriptDir, "ui");
|
|
923
|
+
return join(__dirname, "ui");
|
|
925
924
|
}
|
|
926
925
|
var MIME_TYPES = {
|
|
927
926
|
".html": "text/html; charset=utf-8",
|