mindpm 1.2.4 → 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.
- package/README.md +14 -1
- 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
|
}
|