Skip to content
VS Code

Warpweb for VS Code

io.github.northbeamsoftware/warpweb

Research, build, and deploy AI-generated websites via the Warpweb API.

client:VS Code transport:stdio runtime:npm

Install Warpweb in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "warpweb-api-key",
      "description": "WARPWEB_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "warpweb-api-url",
      "description": "WARPWEB_API_URL",
      "password": true
    }
  ],
  "servers": {
    "warpweb": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "warpweb-mcp"
      ],
      "env": {
        "WARPWEB_API_KEY": "${input:warpweb-api-key}",
        "WARPWEB_API_URL": "${input:warpweb-api-url}"
      }
    }
  }
}

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

Warpweb in other clients