Skip to content
VS Code

SaC — Software as Content for VS Code

ai.dynsoft/sac

Give your AI agent the ability to respond with live, interactive apps that evolve.

client:VS Code transport:stdio runtime:pypi

Install SaC — Software as Content in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sac-api-key",
      "description": "SAC_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sac-api-base",
      "description": "SAC_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sac-model",
      "description": "SAC_MODEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sac-search-api-key",
      "description": "SAC_SEARCH_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "sac": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "sac-sdk"
      ],
      "env": {
        "SAC_API_KEY": "${input:sac-api-key}",
        "SAC_API_BASE": "${input:sac-api-base}",
        "SAC_MODEL": "${input:sac-model}",
        "SAC_SEARCH_API_KEY": "${input:sac-search-api-key}"
      }
    }
  }
}

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

SaC — Software as Content in other clients