Skip to content
VS Code

GetFacade for VS Code

ai.getfacade/mcp

Designs a real house exterior on its own photo, prices it line by line and documents it.

client:VS Code transport:stdio runtime:npm

Install GetFacade in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "getfacade-api-key",
      "description": "GETFACADE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "getfacade-api-base-url",
      "description": "GETFACADE_API_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "getfacade-lang",
      "description": "GETFACADE_LANG",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@getfacade/mcp"
      ],
      "env": {
        "GETFACADE_API_KEY": "${input:getfacade-api-key}",
        "GETFACADE_API_BASE_URL": "${input:getfacade-api-base-url}",
        "GETFACADE_LANG": "${input:getfacade-lang}"
      }
    }
  }
}

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

GetFacade in other clients