touchdesigner-mcp-server 1.1.2 → 1.2.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.ja.md +5 -5
- package/README.md +5 -5
- package/dist/cli.js +1 -1
- package/package.json +2 -2
package/README.ja.md
CHANGED
|
@@ -52,14 +52,14 @@ flowchart LR
|
|
|
52
52
|
## 利用方法
|
|
53
53
|
|
|
54
54
|
<details>
|
|
55
|
-
<summary>方法1: Claude Desktop +
|
|
55
|
+
<summary>方法1: Claude Desktop + MCP Bundle(推奨)</summary>
|
|
56
56
|
|
|
57
57
|
##### 1. ファイルをダウンロード
|
|
58
58
|
|
|
59
59
|
[リリースページ](https://github.com/8beeeaaat/touchdesigner-mcp/releases/latest)から以下をダウンロード:
|
|
60
60
|
|
|
61
61
|
- **TouchDesigner Components**: `touchdesigner-mcp-td.zip`
|
|
62
|
-
- **
|
|
62
|
+
- **[MCP Bundle](https://github.com/modelcontextprotocol/mcpb) (.mcpb)**: `touchdesigner-mcp.mcpb`
|
|
63
63
|
|
|
64
64
|
##### 2. TouchDesignerコンポーネントを設置
|
|
65
65
|
|
|
@@ -73,13 +73,13 @@ flowchart LR
|
|
|
73
73
|
|
|
74
74
|

|
|
75
75
|
|
|
76
|
-
##### 3.
|
|
76
|
+
##### 3. MCP Bundleをインストール
|
|
77
77
|
|
|
78
|
-
`touchdesigner-mcp.
|
|
78
|
+
`touchdesigner-mcp.mcpb`ファイルをダブルクリックしてClaude DesktopにMCP Bundleをインストール
|
|
79
79
|
|
|
80
80
|
<https://github.com/user-attachments/assets/0786d244-8b82-4387-bbe4-9da048212854>
|
|
81
81
|
|
|
82
|
-
##### 4.
|
|
82
|
+
##### 4. MCP Bundleが自動的にTouchDesignerサーバー接続を処理
|
|
83
83
|
|
|
84
84
|
**⚠️ 重要:** TouchDesignerコンポーネントのディレクトリ構造は展開した状態を正確に保持してください。`mcp_webserver_base.tox`コンポーネントは`modules/`ディレクトリやその他のファイルへの相対パスを参照しています。
|
|
85
85
|
|
package/README.md
CHANGED
|
@@ -52,14 +52,14 @@ flowchart LR
|
|
|
52
52
|
## Usage
|
|
53
53
|
|
|
54
54
|
<details>
|
|
55
|
-
<summary>Method 1: Using Claude Desktop and
|
|
55
|
+
<summary>Method 1: Using Claude Desktop and MCP Bundle (Recommended)</summary>
|
|
56
56
|
|
|
57
57
|
### 1. Download Files
|
|
58
58
|
|
|
59
59
|
Download the following from the [releases page](https://github.com/8beeeaaat/touchdesigner-mcp/releases/latest):
|
|
60
60
|
|
|
61
61
|
- **TouchDesigner Components**: `touchdesigner-mcp-td.zip`
|
|
62
|
-
- **
|
|
62
|
+
- **[MCP Bundle](https://github.com/modelcontextprotocol/mcpb) (.mcpb)**: `touchdesigner-mcp.mcpb`
|
|
63
63
|
|
|
64
64
|
### 2. Set up TouchDesigner Components
|
|
65
65
|
|
|
@@ -73,15 +73,15 @@ Download the following from the [releases page](https://github.com/8beeeaaat/tou
|
|
|
73
73
|
|
|
74
74
|

|
|
75
75
|
|
|
76
|
-
### 3. Install the
|
|
76
|
+
### 3. Install the MCP Bundle
|
|
77
77
|
|
|
78
|
-
Double-click the `touchdesigner-mcp.
|
|
78
|
+
Double-click the `touchdesigner-mcp.mcpb` file to install the bundle in Claude Desktop.
|
|
79
79
|
|
|
80
80
|
<https://github.com/user-attachments/assets/0786d244-8b82-4387-bbe4-9da048212854>
|
|
81
81
|
|
|
82
82
|
### 4. Connect to the Server
|
|
83
83
|
|
|
84
|
-
The
|
|
84
|
+
The MCP bundle will automatically handle the connection to the TouchDesigner server.
|
|
85
85
|
|
|
86
86
|
**⚠️ 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.
|
|
87
87
|
|
package/dist/cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
3
3
|
import { TouchDesignerServer } from "./server/touchDesignerServer.js";
|
|
4
|
-
// Note: Environment variables should be set by the
|
|
4
|
+
// Note: Environment variables should be set by the MCP Bundle runtime or CLI arguments
|
|
5
5
|
const DEFAULT_HOST = "http://127.0.0.1";
|
|
6
6
|
const DEFAULT_PORT = 9981;
|
|
7
7
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "touchdesigner-mcp-server",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "MCP server for TouchDesigner",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"build": "run-s build:*",
|
|
64
64
|
"build:gen": "npm run gen",
|
|
65
65
|
"build:dist": "tsc && shx chmod +x dist/*.js && shx cp -r src/features/tools/presenter/templates dist/features/tools/presenter/",
|
|
66
|
-
"build:
|
|
66
|
+
"build:mcpb": "npx @anthropic-ai/mcpb pack mcpb/ touchdesigner-mcp.mcpb",
|
|
67
67
|
"lint": "run-p lint:*",
|
|
68
68
|
"lint:biome": "biome check",
|
|
69
69
|
"lint:tsc": "tsc --noEmit",
|