touchdesigner-mcp-server 0.4.5 → 0.4.6

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.
@@ -7,7 +7,7 @@ export const customInstance = (config, options) => {
7
7
  ...options,
8
8
  cancelToken: source.token,
9
9
  }).then(({ data }) => data);
10
- // @ts-ignore
10
+ // @ts-expect-error
11
11
  promise.cancel = () => {
12
12
  source.cancel("Query was cancelled");
13
13
  };
@@ -1,9 +1,9 @@
1
1
  /**
2
- * Generated by orval v7.10.0 🍺
2
+ * Generated by orval v7.11.2 🍺
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.5
6
+ * OpenAPI spec version: 0.4.6
7
7
  */
8
8
  import { customInstance } from '../../api/customInstance.js';
9
9
  // eslint-disable-next-line @typescript-eslint/no-redeclare
@@ -1,9 +1,9 @@
1
1
  /**
2
- * Generated by orval v7.10.0 🍺
2
+ * Generated by orval v7.11.2 🍺
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.5
6
+ * OpenAPI spec version: 0.4.6
7
7
  */
8
8
  import { z as zod } from 'zod';
9
9
  /**
@@ -159,7 +159,7 @@ This allows operations equivalent to TouchDesigner's Python API such as
159
159
  export const execNodeMethodBody = zod.object({
160
160
  "nodePath": zod.string().describe('Path to the node (e.g., /project1/null1)'),
161
161
  "method": zod.string().describe('Name of the method to call'),
162
- "args": zod.array(zod.string().or(zod.number()).or(zod.boolean())).optional().describe('List of arguments for the method call'),
162
+ "args": zod.array(zod.union([zod.string(), zod.number(), zod.boolean()])).optional().describe('List of arguments for the method call'),
163
163
  "kwargs": zod.record(zod.string(), zod.any()).optional().describe('Keyword arguments for the method call')
164
164
  });
165
165
  export const execNodeMethodResponse = zod.object({
@@ -18,7 +18,7 @@ export class TouchDesignerServer {
18
18
  constructor() {
19
19
  this.server = new McpServer({
20
20
  name: "TouchDesigner",
21
- version: "0.4.5",
21
+ version: "0.4.6",
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.5",
3
+ "version": "0.4.6",
4
4
  "description": "MCP server for TouchDesigner",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,29 +22,29 @@
22
22
  "touchdesigner-mcp-server": "dist/cli.js"
23
23
  },
24
24
  "dependencies": {
25
- "@modelcontextprotocol/sdk": "^1.13.2",
25
+ "@modelcontextprotocol/sdk": "^1.17.3",
26
26
  "@mozilla/readability": "^0.6.0",
27
27
  "@types/axios": "^0.14.4",
28
28
  "@types/ws": "^8.18.1",
29
29
  "@types/yargs": "^17.0.33",
30
- "axios": "^1.10.0",
31
- "zod": "^3.25.67"
30
+ "axios": "^1.11.0",
31
+ "zod": "3.25.76"
32
32
  },
33
33
  "devDependencies": {
34
- "@biomejs/biome": "2.0.6",
35
- "@openapitools/openapi-generator-cli": "^2.21.0",
34
+ "@biomejs/biome": "2.2.0",
35
+ "@openapitools/openapi-generator-cli": "^2.22.0",
36
36
  "@types/jsdom": "^21.1.7",
37
- "@types/node": "^24.0.7",
37
+ "@types/node": "^24.3.0",
38
38
  "@vitest/coverage-v8": "^3.2.4",
39
39
  "archiver": "^7.0.1",
40
- "msw": "^2.10.2",
40
+ "msw": "^2.10.5",
41
41
  "mustache": "^4.2.0",
42
42
  "npm-run-all": "^4.1.5",
43
- "orval": "^7.10.0",
43
+ "orval": "^7.11.2",
44
44
  "shx": "^0.4.0",
45
- "typescript": "^5.8.3",
45
+ "typescript": "^5.9.2",
46
46
  "vitest": "^3.2.4",
47
- "yaml": "^2.8.0"
47
+ "yaml": "^2.8.1"
48
48
  },
49
49
  "type": "module",
50
50
  "exports": {