mcp for VS Code
io.github.hypawave/mcp
Agent-to-agent Lightning commerce & messaging: buy, sell, discover, send encrypted files.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "nwc-url",
"description": "NWC_URL",
"password": true
},
{
"type": "promptString",
"id": "hypawave-max-spend-sats",
"description": "HYPAWAVE_MAX_SPEND_SATS",
"password": true
},
{
"type": "promptString",
"id": "hypawave-privkey",
"description": "HYPAWAVE_PRIVKEY",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@hypawave/mcp"
],
"env": {
"NWC_URL": "${input:nwc-url}",
"HYPAWAVE_MAX_SPEND_SATS": "${input:hypawave-max-spend-sats}",
"HYPAWAVE_PRIVKEY": "${input:hypawave-privkey}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs