thingd-cli 0.4.0 → 0.5.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.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -109,6 +109,13 @@ Claude Desktop natively only supports local `stdio` servers. However, `thingd mc
109
109
  }
110
110
  ```
111
111
 
112
+ **Running as a Streamable HTTP Server:**
113
+ If you want to run `thingd` as a standalone Streamable HTTP MCP server (for example, to connect remote agents or ChatGPT), you can spin it up directly using `mcp-http`:
114
+
115
+ ```bash
116
+ thingd mcp-http --path ./thingd.db --driver native --port 8757 --auth-token change-me
117
+ ```
118
+
112
119
  ### Command Reference
113
120
 
114
121
  **Metrics & Discovery**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thingd-cli",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "Admin and operator CLI for thingd.",
5
5
  "type": "module",
6
6
  "author": "Sayan Mohsin",
@@ -33,7 +33,7 @@
33
33
  "cli-table3": "^0.6.5",
34
34
  "picocolors": "^1.1.1",
35
35
  "zod": "^4.4.3",
36
- "thingd": "0.4.0"
36
+ "thingd": "0.5.0"
37
37
  },
38
38
  "engines": {
39
39
  "node": ">=20"