touchdesigner-mcp-server
Version:
MCP server for TouchDesigner
95 lines (94 loc) • 2.86 kB
JSON
{
"name": "touchdesigner-mcp-server",
"version": "1.5.0",
"description": "MCP server for TouchDesigner",
"repository": {
"type": "git",
"url": "git+https://github.com/8beeeaaat/touchdesigner-mcp.git"
},
"keywords": [
"MCP Server",
"TouchDesigner"
],
"author": "8beeeaaat",
"license": "MIT",
"mcpName": "io.github.8beeeaaat/touchdesigner-mcp-server",
"mcpCompatibility": {
"minApiVersion": "1.3.0"
},
"bugs": {
"url": "https://github.com/8beeeaaat/touchdesigner-mcp/issues"
},
"homepage": "https://github.com/8beeeaaat/touchdesigner-mcp#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"touchdesigner-mcp-server": "dist/cli.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"axios": "1.18.1",
"express": "5.2.1",
"mustache": "4.2.0",
"semver": "7.8.5",
"yaml": "2.9.0",
"zod": "4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.1",
"@redocly/cli": "2.35.1",
"@types/express": "5.0.6",
"@types/mustache": "4.2.6",
"@types/node": "26.0.1",
"@types/semver": "7.7.1",
"@vitest/coverage-v8": "4.1.9",
"npm-run-all": "4.1.5",
"orval": "8.19.0",
"prettier": "3.8.5",
"shx": "0.4.0",
"typescript": "6.0.3",
"vitest": "4.1.9"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./cli": {
"import": "./dist/cli.js",
"types": "./dist/cli.d.ts"
}
},
"scripts": {
"build": "run-s build:*",
"build:gen": "npm run gen",
"build:dist": "tsc && shx chmod +x dist/*.js && shx cp -r src/features/tools/presenter/templates dist/features/tools/presenter/",
"build:mcpb": "npx @anthropic-ai/mcpb pack mcpb/ touchdesigner-mcp.mcpb",
"lint": "run-p lint:*",
"lint:biome": "biome check",
"lint:tsc": "tsc --noEmit",
"lint:python": "ruff check td/",
"lint:yaml": "prettier --check \"**/*.{yml,yaml}\"",
"format": "run-p format:*",
"format:biome": "biome check --fix",
"format:python": "ruff format td/ && ruff check --fix td/",
"format:yaml": "prettier --write \"**/*.{yml,yaml}\"",
"dev": "npx @modelcontextprotocol/inspector node dist/cli.js --stdio",
"http": "npm run build && node dist/cli.js --mcp-http-port=6280 --mcp-http-host=127.0.0.1 --host=http://127.0.0.1 --port=9981",
"test": "run-p test:*",
"test:integration": "vitest run ./tests/integration",
"test:unit": "vitest run ./tests/unit",
"coverage": "vitest run --coverage",
"version": "run-p version:*",
"version:api": "node ./scripts/syncApiServerVersions.ts",
"version:mcp": "node ./scripts/syncMcpServerVersions.ts",
"gen": "run-s gen:*",
"gen:openapi": "redocly bundle ./src/api/index.yml -o ./td/modules/td_server/openapi_server/openapi/openapi.yaml",
"gen:handlers": "node td/genHandlers.js",
"gen:mcp": "orval --config ./orval.config.ts"
},
"files": [
"dist/**/*"
]
}