Skip to content
VS Code

Boltwork for VS Code

io.github.squidboy30/boltwork-mcp

AI services via Bitcoin Lightning — PDF summarisation, code review, translation and more.

client:VS Code transport:stdio runtime:pypi

Install Boltwork in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nwc-connection-string",
      "description": "NWC_CONNECTION_STRING",
      "password": true
    },
    {
      "type": "promptString",
      "id": "phoenixd-url",
      "description": "PHOENIXD_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "phoenixd-password",
      "description": "PHOENIXD_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "boltwork-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "boltwork-mcp"
      ],
      "env": {
        "NWC_CONNECTION_STRING": "${input:nwc-connection-string}",
        "PHOENIXD_URL": "${input:phoenixd-url}",
        "PHOENIXD_PASSWORD": "${input:phoenixd-password}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Boltwork in other clients