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 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ファイルを展開して `td` ディレクトリを取得
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
- **⚠️ 重要:** `td` ディレクトリの構造は展開した状態を正確に保持する必要があります。`mcp_webserver_base.tox` コンポーネントは `modules/` ディレクトリやその他のファイルへの相対パスを参照しています。展開した `td` ディレクトリ内のファイルを移動したり再編成したりしないでください。
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 `td` directory
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 `td` 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 `td` directory.
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.0
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
@@ -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.0
6
+ * OpenAPI spec version: 0.4.0-alpha.1
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.0",
21
+ version: "0.4.0-alpha.1",
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.0",
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": {
@@ -2,7 +2,7 @@ openapi: 3.0.0
2
2
  info:
3
3
  description: OpenAPI schema for generating TouchDesigner API client code
4
4
  title: TouchDesigner API
5
- version: 0.4.0-alpha.0
5
+ version: 0.4.0-alpha.1
6
6
  servers:
7
7
  - url: "{baseUrl}"
8
8
  variables: