@thingd/cli 0.74.3 → 0.75.0
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 +8 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -19,6 +19,14 @@ thingd mcp
|
|
|
19
19
|
# Start the HTTP MCP server + dashboard
|
|
20
20
|
thingd mcp-http
|
|
21
21
|
|
|
22
|
+
# Optional encrypted native storage; inject the key, do not put it in MCP config
|
|
23
|
+
THINGD_ENCRYPTION_KEY=<64-hex-characters> thingd mcp --driver native
|
|
24
|
+
|
|
25
|
+
# Offline migration or key rotation
|
|
26
|
+
THINGD_ENCRYPTION_SOURCE_KEY=<old-key> \
|
|
27
|
+
THINGD_ENCRYPTION_DESTINATION_KEY=<new-key> \
|
|
28
|
+
thingd db reencrypt --source ./old-db --destination ./new-db
|
|
29
|
+
|
|
22
30
|
# Open the TUI dashboard
|
|
23
31
|
thingd dashboard
|
|
24
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thingd/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.75.0",
|
|
4
4
|
"description": "CLI, Interactive TUI Dashboard, and MCP server for thingd — a fast object-first data engine for applications and AI agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://engine.thingd.cloud",
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
"url": "git+https://github.com/sayanmohsin/thingd.git"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
44
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
45
|
+
"@thingd/sdk": "workspace:^",
|
|
45
46
|
"cli-table3": "^0.6.5",
|
|
46
47
|
"picocolors": "^1.1.1",
|
|
47
|
-
"@thingd/sdk": "workspace:^",
|
|
48
48
|
"zod": "^4.4.3"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|