Skip to content
VS Code

ScalePad for VS Code

io.github.wyre-ai/scalepad-mcp

MCP server for ScalePad — Core, Lifecycle Manager, ControlMap, Backup Radar, and Quoter.

client:VS Code transport:stdio runtime:oci

Install ScalePad in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "scalepad-api-key",
      "description": "SCALEPAD_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "scalepad-region",
      "description": "SCALEPAD_REGION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "quoter-client-id",
      "description": "QUOTER_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "quoter-client-secret",
      "description": "QUOTER_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "auth-mode",
      "description": "AUTH_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "scalepad-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-ai/scalepad-mcp:v1.0.6"
      ],
      "env": {
        "SCALEPAD_API_KEY": "${input:scalepad-api-key}",
        "SCALEPAD_REGION": "${input:scalepad-region}",
        "QUOTER_CLIENT_ID": "${input:quoter-client-id}",
        "QUOTER_CLIENT_SECRET": "${input:quoter-client-secret}",
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "AUTH_MODE": "${input:auth-mode}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

ScalePad in other clients