touchdesigner-mcp-server 0.2.2 → 0.2.3

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
@@ -4,7 +4,7 @@ TouchDesignerのためのMCP(Model Context Protocol) サーバー実装です。
4
4
 
5
5
  ## 概要
6
6
 
7
- ![demo](https://github.com/user-attachments/assets/b7130ebe-406c-4e05-9efc-5d493eb800cb)
7
+ ![demo](https://github.com/user-attachments/assets/333b7db8-ebcb-4ac2-812e-c2174fa4bb2b)
8
8
 
9
9
  TouchDesigner MCPは、AIモデルとTouchDesigner WebServer DAT 間のブリッジとして機能し、AIエージェントが以下のことが可能になります
10
10
  - ノードの作成、変更、削除
@@ -28,6 +28,8 @@ TouchDesignerを起動し、`td/mcp_webserver_base.tox` コンポーネントを
28
28
 
29
29
  tox のimport により `td/import_modules.py` スクリプトが動作し、APIサーバのコントローラなどのモジュールがロードされます。
30
30
 
31
+ ![import](https://github.com/user-attachments/assets/46c97e13-4a26-4437-84d3-3a306e56462b)
32
+
31
33
  #### APIサーバの動作確認
32
34
  `npm run test` を実行することでMCPサーバーコードのユニットテストと TouchDesigner への接続テストが実行されます。
33
35
  このテストでは `td/modules` ディレクトリ内のPythonモジュールが `mcp_webserver_base` コンポーネントからアクセス可能であることを確認します。
package/README.md CHANGED
@@ -4,7 +4,7 @@ This is an implementation of an MCP (Model Context Protocol) server for TouchDes
4
4
 
5
5
  ## Overview
6
6
 
7
- ![demo](https://github.com/user-attachments/assets/b7130ebe-406c-4e05-9efc-5d493eb800cb)
7
+ ![demo](https://github.com/user-attachments/assets/333b7db8-ebcb-4ac2-812e-c2174fa4bb2b)
8
8
 
9
9
  TouchDesigner MCP acts as a bridge between AI models and the TouchDesigner WebServer DAT, enabling AI agents to:
10
10
  - Create, modify, and delete nodes
@@ -28,6 +28,8 @@ Example: Place it as `/project1/mcp_webserver_base`
28
28
 
29
29
  Importing the tox will trigger the `td/import_modules.py` script, which loads modules such as API server controllers.
30
30
 
31
+ ![import](https://github.com/user-attachments/assets/46c97e13-4a26-4437-84d3-3a306e56462b)
32
+
31
33
  #### Verify API server operation
32
34
  Run `npm run test` to execute unit tests for the MCP server code and connection tests to TouchDesigner.
33
35
  This test ensures that the Python modules in the `td/modules` directory are accessible from the `mcp_webserver_base` component.
@@ -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.1
6
+ * OpenAPI spec version: 0.2.3
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.1
6
+ * OpenAPI spec version: 0.2.3
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.1",
21
+ version: "0.2.3",
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.2",
3
+ "version": "0.2.3",
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.1
5
+ version: 0.2.3
6
6
  servers:
7
7
  - url: "{baseUrl}"
8
8
  variables: