controlai-mcp
Version:
High-Performance Enterprise AI Project Management MCP Server with advanced optimization and multi-agent coordination
76 lines • 1.39 kB
JSON
{
"version": "2.0.0",
"tasks": [
{
"label": "Start CBD Service",
"type": "shell",
"command": "pnpm",
"args": [
"run",
"service"
],
"options": {
"cwd": "${workspaceFolder}/../cbd"
},
"isBackground": true,
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": true,
"clear": false
},
"problemMatcher": []
},
{
"label": "Start ControlAI MCP",
"type": "shell",
"command": "pnpm",
"args": [
"dev"
],
"options": {
"cwd": "${workspaceFolder}",
"env": {
"CONTROLAI_WEBSOCKET_ENABLED": "true",
"CONTROLAI_PORT": "7001"
}
},
"isBackground": true,
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": true,
"clear": false
},
"problemMatcher": []
},
{
"label": "Start Dashboard",
"type": "shell",
"command": "pnpm",
"args": [
"dev"
],
"options": {
"cwd": "${workspaceFolder}/../../apps/controlai-dashboard"
},
"isBackground": true,
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": true,
"clear": false
},
"problemMatcher": []
}
]
}