@dpantani/tdmcp 0.3.0 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -66,7 +66,7 @@ Three pieces talk to each other on your computer:
66
66
 
67
67
  Node.js is only needed for the build-from-source path (**[Node 20+](https://nodejs.org)**).
68
68
  The one-click Claude Desktop extension needs nothing extra — the server is bundled
69
- inside the `.dxt`.
69
+ inside the `.mcpb` (formerly `.dxt`; legacy `.dxt` files still install).
70
70
 
71
71
  ## Get started
72
72
 
@@ -85,8 +85,8 @@ Do every step yourself; only stop when you need me to paste one line into TouchD
85
85
  It clones, builds and wires everything up; the only manual step is pasting one
86
86
  line into TouchDesigner (Step 2 below).
87
87
 
88
- **🟢 Claude Desktop — one-click `.dxt` (no terminal, no Node).** Download
89
- **[tdmcp.dxt](https://github.com/Pantani/tdmcp/releases/latest/download/tdmcp.dxt)**,
88
+ **🟢 Claude Desktop — one-click `.mcpb` (no terminal, no Node).** Download
89
+ **[tdmcp.mcpb](https://github.com/Pantani/tdmcp/releases/latest/download/tdmcp.mcpb)**,
90
90
  then in Claude Desktop open **Settings → Extensions** and install it (drag it in or
91
91
  **Install from file**). Leave host/port at `127.0.0.1` / `9980`. Full walkthrough:
92
92
  [the install guide](https://pantani.github.io/tdmcp/guide/install).
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dpantani/tdmcp",
3
3
  "mcpName": "io.github.Pantani/tdmcp",
4
- "version": "0.3.0",
4
+ "version": "0.3.1",
5
5
  "description": "tdmcp — the TouchDesigner MCP server. Build real TouchDesigner visual systems from plain language with Claude, Cursor, or Codex (Model Context Protocol).",
6
6
  "type": "module",
7
7
  "license": "MIT",
@@ -42,7 +42,7 @@
42
42
  "import:bottobot": "tsx scripts/import-bottobot-data.ts",
43
43
  "validate:recipes": "tsx scripts/validate-recipes.ts",
44
44
  "smoke:live": "tsx scripts/smoke-live.ts",
45
- "build:dxt": "node scripts/build-dxt.mjs",
45
+ "build:mcpb": "node scripts/build-dxt.mjs",
46
46
  "docs:gen": "tsx scripts/gen-tool-docs.ts",
47
47
  "docs:dev": "npm run docs:gen && vitepress dev docs",
48
48
  "docs:build": "npm run docs:gen && vitepress build docs",