askme-cli
Version:
askme-cli MCP server that collects user's next plan or confirmation through terminal window
46 lines • 1.46 kB
JSON
{
"version": "0.2.0",
"configurations": [
{
"name": "MCP Server Debug (tsx)",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/src/mcp-cli-server.ts",
"runtimeArgs": [
"--inspect-brk=9229",
"--import",
"tsx/esm"
],
"console": "integratedTerminal",
"skipFiles": [
"<node_internals>/**"
],
"env": {
"NODE_ENV": "development"
}
},
{
"name": "Attach to MCP Server",
"type": "node",
"request": "attach",
"port": 9229,
"restart": true,
"localRoot": "${workspaceFolder}",
"remoteRoot": "${workspaceFolder}",
"skipFiles": [
"<node_internals>/**"
],
"sourceMaps": true, // Enable Source Maps
"smartStep": true, // Smart stepping
"preLaunchTask": "build", // Compile before debugging
"outFiles": [ // Specify output file location
"${workspaceFolder}/dist/**/*.js"
],
"resolveSourceMapLocations": [ // Source Maps resolution location
"${workspaceFolder}/dist/**",
"${workspaceFolder}/src/**",
"!**/node_modules/**"
]
}
]
}