touchdesigner-mcp-server 0.4.0-alpha.0 → 0.4.0-alpha.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.
- package/README.ja.md +3 -4
- package/README.md +3 -3
- package/dist/gen/endpoints/TouchDesignerAPI.js +1 -1
- package/dist/gen/mcp/touchDesignerAPI.zod.js +1 -1
- package/dist/server/touchDesignerServer.js +1 -1
- package/package.json +5 -1
- package/td/modules/td_server/openapi_server/openapi/openapi.yaml +1 -1
package/README.ja.md
CHANGED
|
@@ -24,11 +24,10 @@ TouchDesigner MCPは、AIモデルとTouchDesigner WebServer DAT 間のブリッ
|
|
|
24
24
|
|
|
25
25
|
npxを使用する場合、TouchDesignerコンポーネントを別途ダウンロードする必要があります:
|
|
26
26
|
1. [リリースページ](https://github.com/8beeeaaat/touchdesigner-mcp/releases)から `touchdesigner-mcp-td.zip` をダウンロード
|
|
27
|
-
2. zip
|
|
28
|
-
3. 展開したファイルから `mcp_webserver_base.tox` を操作したいTouchDesignerプロジェクト直下にimportします。
|
|
27
|
+
2. zipファイルを展開したフォルダから `mcp_webserver_base.tox` を操作したいTouchDesignerプロジェクト直下にimportします。
|
|
29
28
|
例: `/project1/mcp_webserver_base` となるように配置
|
|
30
29
|
|
|
31
|
-
**⚠️ 重要:**
|
|
30
|
+
**⚠️ 重要:** ディレクトリの構造は展開した状態を正確に保持する必要があります。`mcp_webserver_base.tox` コンポーネントは `modules/` ディレクトリやその他のファイルへの相対パスを参照しています。展開したディレクトリ内のファイルを移動したり再編成したりしないでください。
|
|
32
31
|
|
|
33
32
|
##### 2. AIエージェントの設定:
|
|
34
33
|
|
|
@@ -39,7 +38,7 @@ npxを使用する場合、TouchDesignerコンポーネントを別途ダウン
|
|
|
39
38
|
"touchdesigner": {
|
|
40
39
|
"command": "npx",
|
|
41
40
|
"args": [
|
|
42
|
-
"touchdesigner-mcp-server",
|
|
41
|
+
"touchdesigner-mcp-server@prerelease",
|
|
43
42
|
"--stdio"
|
|
44
43
|
]
|
|
45
44
|
}
|
package/README.md
CHANGED
|
@@ -24,11 +24,11 @@ TouchDesigner MCP acts as a bridge between AI models and the TouchDesigner WebSe
|
|
|
24
24
|
|
|
25
25
|
Since you're using npx, you'll need to download the TouchDesigner components separately:
|
|
26
26
|
1. Download `touchdesigner-mcp-td.zip` from the [releases page](https://github.com/8beeeaaat/touchdesigner-mcp/releases)
|
|
27
|
-
2. Extract the zip file to get the
|
|
27
|
+
2. Extract the zip file to get the directory
|
|
28
28
|
3. Import `mcp_webserver_base.tox` from the extracted files directly under the TouchDesigner project you want to control.
|
|
29
29
|
Example: Place it as `/project1/mcp_webserver_base`
|
|
30
30
|
|
|
31
|
-
**⚠️ Important:** The
|
|
31
|
+
**⚠️ Important:** The directory structure must be preserved exactly as extracted. The `mcp_webserver_base.tox` component references relative paths to the `modules/` directory and other files. Do not move or reorganize files within the extracted directory.
|
|
32
32
|
|
|
33
33
|
#### 2. Configure your AI agent:
|
|
34
34
|
|
|
@@ -39,7 +39,7 @@ Example: Place it as `/project1/mcp_webserver_base`
|
|
|
39
39
|
"touchdesigner": {
|
|
40
40
|
"command": "npx",
|
|
41
41
|
"args": [
|
|
42
|
-
"touchdesigner-mcp-server",
|
|
42
|
+
"touchdesigner-mcp-server@prerelease",
|
|
43
43
|
"--stdio"
|
|
44
44
|
]
|
|
45
45
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Do not edit manually.
|
|
4
4
|
* TouchDesigner API
|
|
5
5
|
* OpenAPI schema for generating TouchDesigner API client code
|
|
6
|
-
* OpenAPI spec version: 0.4.0-alpha.
|
|
6
|
+
* OpenAPI spec version: 0.4.0-alpha.1
|
|
7
7
|
*/
|
|
8
8
|
import { customInstance } from '../../api/customInstance.js';
|
|
9
9
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "touchdesigner-mcp-server",
|
|
3
|
-
"version": "0.4.0-alpha.
|
|
3
|
+
"version": "0.4.0-alpha.1",
|
|
4
4
|
"description": "MCP server for TouchDesigner",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -51,6 +51,10 @@
|
|
|
51
51
|
".": {
|
|
52
52
|
"import": "./dist/index.js",
|
|
53
53
|
"types": "./dist/index.d.ts"
|
|
54
|
+
},
|
|
55
|
+
"./cli": {
|
|
56
|
+
"import": "./dist/cli.js",
|
|
57
|
+
"types": "./dist/cli.d.ts"
|
|
54
58
|
}
|
|
55
59
|
},
|
|
56
60
|
"scripts": {
|