touchdesigner-mcp-server 0.2.3 → 0.2.4

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
@@ -2,9 +2,11 @@
2
2
 
3
3
  TouchDesignerのためのMCP(Model Context Protocol) サーバー実装です。AIエージェントがTouchDesignerプロジェクトを制御・操作できるようになることを目指しています。
4
4
 
5
+ [English](https://github.com/8beeeaaat/touchdesigner-mcp/blob/main/README.md) / [日本語](https://github.com/8beeeaaat/touchdesigner-mcp/blob/main/README.ja.md)
6
+
5
7
  ## 概要
6
8
 
7
- ![demo](https://github.com/user-attachments/assets/333b7db8-ebcb-4ac2-812e-c2174fa4bb2b)
9
+ ![demo](https://github.com/8beeeaaat/touchdesigner-mcp/blob/main/assets/nodes_list.png)
8
10
 
9
11
  TouchDesigner MCPは、AIモデルとTouchDesigner WebServer DAT 間のブリッジとして機能し、AIエージェントが以下のことが可能になります
10
12
  - ノードの作成、変更、削除
@@ -28,7 +30,7 @@ TouchDesignerを起動し、`td/mcp_webserver_base.tox` コンポーネントを
28
30
 
29
31
  tox のimport により `td/import_modules.py` スクリプトが動作し、APIサーバのコントローラなどのモジュールがロードされます。
30
32
 
31
- ![import](https://github.com/user-attachments/assets/46c97e13-4a26-4437-84d3-3a306e56462b)
33
+ ![import](https://github.com/8beeeaaat/touchdesigner-mcp/blob/main/assets/import.png)
32
34
 
33
35
  #### APIサーバの動作確認
34
36
  `npm run test` を実行することでMCPサーバーコードのユニットテストと TouchDesigner への接続テストが実行されます。
package/README.md CHANGED
@@ -2,9 +2,11 @@
2
2
 
3
3
  This is an implementation of an MCP (Model Context Protocol) server for TouchDesigner. The goal is to enable AI agents to control and operate TouchDesigner projects.
4
4
 
5
+ [English](https://github.com/8beeeaaat/touchdesigner-mcp/blob/main/README.md) / [日本語](https://github.com/8beeeaaat/touchdesigner-mcp/blob/main/README.ja.md)
6
+
5
7
  ## Overview
6
8
 
7
- ![demo](https://github.com/user-attachments/assets/333b7db8-ebcb-4ac2-812e-c2174fa4bb2b)
9
+ ![demo](https://github.com/8beeeaaat/touchdesigner-mcp/blob/main/assets/nodes_list.png)
8
10
 
9
11
  TouchDesigner MCP acts as a bridge between AI models and the TouchDesigner WebServer DAT, enabling AI agents to:
10
12
  - Create, modify, and delete nodes
@@ -28,7 +30,7 @@ Example: Place it as `/project1/mcp_webserver_base`
28
30
 
29
31
  Importing the tox will trigger the `td/import_modules.py` script, which loads modules such as API server controllers.
30
32
 
31
- ![import](https://github.com/user-attachments/assets/46c97e13-4a26-4437-84d3-3a306e56462b)
33
+ ![import](https://github.com/8beeeaaat/touchdesigner-mcp/blob/main/assets/import.png)
32
34
 
33
35
  #### Verify API server operation
34
36
  Run `npm run test` to execute unit tests for the MCP server code and connection tests to TouchDesigner.
@@ -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.2.3
6
+ * OpenAPI spec version: 0.2.4
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.2.3
6
+ * OpenAPI spec version: 0.2.4
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.2.3",
21
+ version: "0.2.4",
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.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "MCP server for TouchDesigner",
5
5
  "repository": {
6
6
  "type": "git",
@@ -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.2.3
5
+ version: 0.2.4
6
6
  servers:
7
7
  - url: "{baseUrl}"
8
8
  variables: