touchdesigner-mcp-server 0.4.5 → 0.4.7
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.
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by orval v7.
|
|
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.
|
|
6
|
+
* OpenAPI spec version: 0.4.7
|
|
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.
|
|
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.
|
|
6
|
+
* OpenAPI spec version: 0.4.7
|
|
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()
|
|
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({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "touchdesigner-mcp-server",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.7",
|
|
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.
|
|
25
|
+
"@modelcontextprotocol/sdk": "^1.18.0",
|
|
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.
|
|
31
|
-
"zod": "
|
|
30
|
+
"axios": "^1.12.2",
|
|
31
|
+
"zod": "3.25.76"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@biomejs/biome": "2.
|
|
35
|
-
"@openapitools/openapi-generator-cli": "^2.
|
|
34
|
+
"@biomejs/biome": "2.2.4",
|
|
35
|
+
"@openapitools/openapi-generator-cli": "^2.23.1",
|
|
36
36
|
"@types/jsdom": "^21.1.7",
|
|
37
|
-
"@types/node": "^24.0
|
|
37
|
+
"@types/node": "^24.4.0",
|
|
38
38
|
"@vitest/coverage-v8": "^3.2.4",
|
|
39
39
|
"archiver": "^7.0.1",
|
|
40
|
-
"msw": "^2.
|
|
40
|
+
"msw": "^2.11.2",
|
|
41
41
|
"mustache": "^4.2.0",
|
|
42
42
|
"npm-run-all": "^4.1.5",
|
|
43
|
-
"orval": "^7.
|
|
43
|
+
"orval": "^7.11.2",
|
|
44
44
|
"shx": "^0.4.0",
|
|
45
|
-
"typescript": "^5.
|
|
45
|
+
"typescript": "^5.9.2",
|
|
46
46
|
"vitest": "^3.2.4",
|
|
47
|
-
"yaml": "^2.8.
|
|
47
|
+
"yaml": "^2.8.1"
|
|
48
48
|
},
|
|
49
49
|
"type": "module",
|
|
50
50
|
"exports": {
|
|
@@ -83,5 +83,8 @@
|
|
|
83
83
|
"workerDirectory": [
|
|
84
84
|
"public"
|
|
85
85
|
]
|
|
86
|
+
},
|
|
87
|
+
"overrides": {
|
|
88
|
+
"axios": "^1.12.2"
|
|
86
89
|
}
|
|
87
90
|
}
|