touchdesigner-mcp-server 0.4.0-alpha.6 → 0.4.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 CHANGED
@@ -69,7 +69,7 @@ https://github.com/user-attachments/assets/215fb343-6ed8-421c-b948-2f45fb819ff4
69
69
  "mcpServers": {
70
70
  "touchdesigner": {
71
71
  "command": "npx",
72
- "args": ["-y", "touchdesigner-mcp-server@prerelease", "--stdio"]
72
+ "args": ["-y", "touchdesigner-mcp-server", "--stdio"]
73
73
  }
74
74
  }
75
75
  }
@@ -79,7 +79,7 @@ https://github.com/user-attachments/assets/215fb343-6ed8-421c-b948-2f45fb819ff4
79
79
  ```json
80
80
  "args": [
81
81
  "-y",
82
- "touchdesigner-mcp-server@prerelease",
82
+ "touchdesigner-mcp-server",
83
83
  "--stdio",
84
84
  "--host=http://custom_host",
85
85
  "--port=9982"
@@ -107,7 +107,7 @@ make build
107
107
 
108
108
  ##### 3. TouchDesignerプロジェクトにMCP連携用のAPIサーバーを設置
109
109
 
110
- TouchDesignerを起動し、`td/mcp_webserver_base.tox`コンポーネントを操作したいTouchDesignerプロジェクト直下にインポートします。
110
+ TouchDesignerを起動し、`td/mcp_webserver_base.tox`コンポーネントを操作したいTouchDesignerプロジェクト直下にインポートします。
111
111
  例: `/project1/mcp_webserver_base`となるように配置
112
112
 
113
113
  toxファイルのインポートにより`td/import_modules.py`スクリプトが実行され、APIサーバーのコントローラなどのモジュールがロードされます。
@@ -165,9 +165,9 @@ docker-compose up -d
165
165
 
166
166
  ## 接続確認
167
167
 
168
- MCPサーバーが認識されていればセットアップは完了です。
169
- 認識されない場合は、AIエージェントを再起動してください。
170
- 起動時にエラーが表示される場合は、TouchDesignerを先に起動してからAIエージェントを再度起動してください。
168
+ MCPサーバーが認識されていればセットアップは完了です。
169
+ 認識されない場合は、AIエージェントを再起動してください。
170
+ 起動時にエラーが表示される場合は、TouchDesignerを先に起動してからAIエージェントを再度起動してください。
171
171
  TouchDesignerでAPIサーバーが実行されていれば、エージェントは提供されたツール等を通じてTouchDesignerを使用できます。
172
172
 
173
173
  ### ディレクトリ構造要件
package/README.md CHANGED
@@ -70,7 +70,7 @@ https://github.com/user-attachments/assets/215fb343-6ed8-421c-b948-2f45fb819ff4
70
70
  "mcpServers": {
71
71
  "touchdesigner": {
72
72
  "command": "npx",
73
- "args": ["-y", "touchdesigner-mcp-server@prerelease", "--stdio"]
73
+ "args": ["-y", "touchdesigner-mcp-server", "--stdio"]
74
74
  }
75
75
  }
76
76
  }
@@ -80,7 +80,7 @@ https://github.com/user-attachments/assets/215fb343-6ed8-421c-b948-2f45fb819ff4
80
80
  ```json
81
81
  "args": [
82
82
  "-y",
83
- "touchdesigner-mcp-server@prerelease",
83
+ "touchdesigner-mcp-server",
84
84
  "--stdio",
85
85
  "--host=http://custom_host",
86
86
  "--port=9982"
@@ -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
6
+ * OpenAPI spec version: 0.4.0
7
7
  */
8
8
  import { customInstance } from '../../api/customInstance.js';
9
9
  // eslint-disable-next-line @typescript-eslint/no-redeclare
@@ -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
6
+ * OpenAPI spec version: 0.4.0
7
7
  */
8
8
  import { z as zod } from 'zod';
9
9
  /**
@@ -18,7 +18,7 @@ export class TouchDesignerServer {
18
18
  constructor() {
19
19
  this.server = new McpServer({
20
20
  name: "TouchDesigner",
21
- version: "0.4.0-alpha.6",
21
+ version: "0.4.0",
22
22
  }, {
23
23
  capabilities: {
24
24
  prompts: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "touchdesigner-mcp-server",
3
- "version": "0.4.0-alpha.6",
3
+ "version": "0.4.0",
4
4
  "description": "MCP server for TouchDesigner",
5
5
  "repository": {
6
6
  "type": "git",