Skip to content
VS Code

liveauth mcp for VS Code

io.github.dulzuradev/liveauth-mcp

MCP server for LiveAuth: PoW + Lightning auth, L402 bundles, and paid MCP tool receipts.

client:VS Code transport:stdio runtime:npm

Install liveauth mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "liveauth-api-key",
      "description": "LIVEAUTH_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "liveauth-api-base",
      "description": "LIVEAUTH_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "liveauth-demo",
      "description": "LIVEAUTH_DEMO",
      "password": true
    }
  ],
  "servers": {
    "liveauth-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@liveauth-labs/mcp-server"
      ],
      "env": {
        "LIVEAUTH_API_KEY": "${input:liveauth-api-key}",
        "LIVEAUTH_API_BASE": "${input:liveauth-api-base}",
        "LIVEAUTH_DEMO": "${input:liveauth-demo}"
      }
    }
  }
}

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

liveauth mcp in other clients