Skip to content
VS Code

mcp for VS Code

io.github.swebsy/mcp

Build and edit real websites in Swebsy Studio from your coding agent — no per-token AI fees.

client:VS Code transport:stdio runtime:npm

Install mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "swebsy-agent-port",
      "description": "SWEBSY_AGENT_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "swebsy-agent-dir",
      "description": "SWEBSY_AGENT_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "swebsy-app-url",
      "description": "SWEBSY_APP_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "swebsy-no-open",
      "description": "SWEBSY_NO_OPEN",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@swebsy/mcp"
      ],
      "env": {
        "SWEBSY_AGENT_PORT": "${input:swebsy-agent-port}",
        "SWEBSY_AGENT_DIR": "${input:swebsy-agent-dir}",
        "SWEBSY_APP_URL": "${input:swebsy-app-url}",
        "SWEBSY_NO_OPEN": "${input:swebsy-no-open}"
      }
    }
  }
}

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

mcp in other clients