Skip to content
VS Code

Store Builder for VS Code

io.github.vuluu2k/sbuilder-mcp

Design, fill with real store data, render and publish Store Builder pages from an AI agent.

client:VS Code transport:stdio runtime:npm

Install Store Builder in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sb-api",
      "description": "SB_API",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sb-token",
      "description": "SB_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sb-email",
      "description": "SB_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sb-password",
      "description": "SB_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "sbuilder-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "sbuilder-mcp"
      ],
      "env": {
        "SB_API": "${input:sb-api}",
        "SB_TOKEN": "${input:sb-token}",
        "SB_EMAIL": "${input:sb-email}",
        "SB_PASSWORD": "${input:sb-password}"
      }
    }
  }
}

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

Store Builder in other clients