launch.json•846 B
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"name": "sseMCP",
"request": "launch",
"program": "${workspaceFolder}/build/index.js",
"cwd": "${workspaceFolder}/build",
"console": "internalConsole",
"runtimeArgs": [
"--inspect"
],
"env": {
"SSEPORT": "3001",
"MONGO_URI": "",
"REDIS_URI": "",
"SSH_server1_URI": "",
"GEMINI_API_KEY": ""
},
"args": []
},
{
"type": "node",
"request": "attach",
"name": "attach",
"address": "localhost",
"port": 9229,
"localRoot": "${workspaceFolder}",
}
]
}