Licence
Apache-2.0
Version
0.40.3
Deps
5
Size
360 kB
Vulns
0
Weekly
3.0K
@thingd/cli
CLI, interactive TUI dashboard, and MCP server for thingd — a fast object-first data engine for applications and AI agents.
Install
npm install -g @thingd/cliUsage
# Start the MCP server (for AI agents — Cursor, Claude Desktop)
thingd mcp
# Start the HTTP MCP server + dashboard
thingd mcp-http
# Open the TUI dashboard
thingd dashboard
# Manage objects
thingd objects list <collection>
thingd objects get <collection> <id>
thingd objects put <collection> <id> --data '{"text":"hello"}'
thingd objects delete <collection> <id>
thingd objects put-batch <collection> --file <path>
thingd objects delete-batch <collection> <id1> [id2] ...
# Events
thingd events append <stream> <type> --text "event data"
thingd events list [stream]
# Queues
thingd queues push <queue> --payload '{"key":"value"}'
thingd queues claim <queue>
thingd queues ack <queue> <jobId>
thingd queues nack <queue> <jobId>
# Links
thingd links create <fromRef> <linkType> <toRef>
thingd links neighbors <reference>
# Utilities
thingd search <query>
thingd status
thingd doctor
thingd install
thingd export --collection <name> --out <path>
thingd import --collection <name> --in <path>
thingd snapshot create --out <path>
thingd snapshot restore --in <path>Full reference: docs/cli-reference.md