@esparkman/pensieve 0.1.0 → 0.1.1
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 +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,7 +22,15 @@ Pensieve provides persistent storage via SQLite that Claude can access through n
|
|
|
22
22
|
|
|
23
23
|
## Installation
|
|
24
24
|
|
|
25
|
-
### Option 1:
|
|
25
|
+
### Option 1: npx (Recommended)
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
claude mcp add pensieve npx @esparkman/pensieve
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
That's it! Restart Claude Code and the tools are available.
|
|
32
|
+
|
|
33
|
+
### Option 2: Clone and Build
|
|
26
34
|
|
|
27
35
|
```bash
|
|
28
36
|
# Clone the repository
|
|
@@ -37,14 +45,6 @@ npm run build
|
|
|
37
45
|
claude mcp add pensieve node ~/Development/pensieve/dist/index.js
|
|
38
46
|
```
|
|
39
47
|
|
|
40
|
-
### Option 2: npx (Coming Soon)
|
|
41
|
-
|
|
42
|
-
Once published to npm:
|
|
43
|
-
|
|
44
|
-
```bash
|
|
45
|
-
claude mcp add pensieve npx @esparkman/pensieve
|
|
46
|
-
```
|
|
47
|
-
|
|
48
48
|
### Option 3: Docker
|
|
49
49
|
|
|
50
50
|
```bash
|
package/package.json
CHANGED