Skip to content
VS Code

weavatrix online for VS Code

io.github.weavatrix/weavatrix-online

Weavatrix Online extension: guarded sync, advisories, malware review, architecture contracts.

client:VS Code transport:stdio runtime:npm

Install weavatrix online in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "weavatrix-sync-url",
      "description": "WEAVATRIX_SYNC_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "weavatrix-sync-token",
      "description": "WEAVATRIX_SYNC_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "weavatrix-capabilities-url",
      "description": "WEAVATRIX_CAPABILITIES_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "weavatrix-architecture-url",
      "description": "WEAVATRIX_ARCHITECTURE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "weavatrix-precision",
      "description": "WEAVATRIX_PRECISION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "weavatrix-advisory-store",
      "description": "WEAVATRIX_ADVISORY_STORE",
      "password": true
    }
  ],
  "servers": {
    "weavatrix-online": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "weavatrix-online"
      ],
      "env": {
        "WEAVATRIX_SYNC_URL": "${input:weavatrix-sync-url}",
        "WEAVATRIX_SYNC_TOKEN": "${input:weavatrix-sync-token}",
        "WEAVATRIX_CAPABILITIES_URL": "${input:weavatrix-capabilities-url}",
        "WEAVATRIX_ARCHITECTURE_URL": "${input:weavatrix-architecture-url}",
        "WEAVATRIX_PRECISION": "${input:weavatrix-precision}",
        "WEAVATRIX_ADVISORY_STORE": "${input:weavatrix-advisory-store}"
      }
    }
  }
}

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

weavatrix online in other clients