estatehelm 1.0.21 → 1.0.23
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 +13 -9
- package/dist/index.js +911 -202
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -68,17 +68,21 @@ Remove credentials and revoke device access.
|
|
|
68
68
|
Start the MCP server.
|
|
69
69
|
|
|
70
70
|
Options:
|
|
71
|
-
- `-m, --mode <mode>` - Privacy mode: `
|
|
71
|
+
- `-m, --mode <mode>` - Privacy mode: `safe` (default) or `full`
|
|
72
|
+
- `-t, --token <token>` - MCP access token (or set ESTATEHELM_MCP_TOKEN env var)
|
|
72
73
|
- `--poll <interval>` - Background sync interval (e.g., `15m`)
|
|
73
74
|
|
|
74
75
|
### `estatehelm status`
|
|
75
76
|
|
|
76
77
|
Show current login status and cache information.
|
|
77
78
|
|
|
78
|
-
### `estatehelm sync`
|
|
79
|
+
### `estatehelm sync [options]`
|
|
79
80
|
|
|
80
81
|
Force sync cache from server.
|
|
81
82
|
|
|
83
|
+
Options:
|
|
84
|
+
- `-t, --token <token>` - MCP access token (or set ESTATEHELM_MCP_TOKEN env var)
|
|
85
|
+
|
|
82
86
|
### `estatehelm cache clear`
|
|
83
87
|
|
|
84
88
|
Clear local cache (keeps credentials).
|
|
@@ -100,20 +104,20 @@ Get configuration value(s).
|
|
|
100
104
|
|
|
101
105
|
## Privacy Modes
|
|
102
106
|
|
|
103
|
-
###
|
|
107
|
+
### Safe Mode (default)
|
|
104
108
|
|
|
105
|
-
|
|
109
|
+
Sensitive fields (passwords, account numbers, etc.) are redacted. Use this when sharing your screen or when uncertain.
|
|
106
110
|
|
|
107
111
|
```bash
|
|
108
|
-
estatehelm mcp --mode
|
|
112
|
+
estatehelm mcp --mode safe
|
|
109
113
|
```
|
|
110
114
|
|
|
111
|
-
###
|
|
115
|
+
### Full Mode
|
|
112
116
|
|
|
113
|
-
|
|
117
|
+
All data is returned as-is. Use this when you're alone and want full access.
|
|
114
118
|
|
|
115
119
|
```bash
|
|
116
|
-
estatehelm mcp --mode
|
|
120
|
+
estatehelm mcp --mode full
|
|
117
121
|
```
|
|
118
122
|
|
|
119
123
|
Redacted fields by entity type:
|
|
@@ -202,7 +206,7 @@ The device was revoked from EstateHelm settings. Run `estatehelm login` to re-re
|
|
|
202
206
|
|
|
203
207
|
### Cache issues
|
|
204
208
|
|
|
205
|
-
Try clearing the cache: `estatehelm cache clear`, then `estatehelm sync`.
|
|
209
|
+
Try clearing the cache: `estatehelm cache clear`, then `estatehelm sync --token YOUR_TOKEN`.
|
|
206
210
|
|
|
207
211
|
## License
|
|
208
212
|
|