-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1007 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "mcp2osc",
"version": "1.0.0",
"description": "Model Context Protocol to Open Sound Control Bridge",
"type": "module",
"main": "mcp-server.js",
"scripts": {
"start": "node service-manager.js",
"mcp": "node service-manager.js",
"mcp-stdio": "node mcp-server.js",
"dashboard-only": "node enhanced-dashboard-server.js",
"verify": "node verify-startup.js",
"test-config": "node -e \"console.log('OSC Config:', {host: process.env.OSC_HOST || '127.0.0.1', send: process.env.OSC_SEND_PORT || '9500', receive: process.env.OSC_RECEIVE_PORT || '9501'})\"",
"test-websocket": "node test-websocket-osc.js",
"test-batch": "node test-batch-osc.js",
"test-bundle": "node test-osc-bundle.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"express": "^4.18.2",
"ws": "^8.14.2"
},
"keywords": [
"osc",
"mcp",
"claude",
"music",
"maxmsp",
"touchdesigner"
],
"author": "MCP2OSC Team",
"license": "MIT"
}