Skip to content
VS Code

SPARDA for VS Code

io.github.zyx77550/sparda-mcp

AI writes. SPARDA proves. Deterministic, offline security gate for AI edits.

client:VS Code transport:stdio runtime:npm

Install SPARDA in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sparda-flywheel",
      "description": "SPARDA_FLYWHEEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sparda-record-sequences",
      "description": "SPARDA_RECORD_SEQUENCES",
      "password": true
    }
  ],
  "servers": {
    "sparda-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "sparda-mcp"
      ],
      "env": {
        "SPARDA_FLYWHEEL": "${input:sparda-flywheel}",
        "SPARDA_RECORD_SEQUENCES": "${input:sparda-record-sequences}"
      }
    }
  }
}

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

SPARDA in other clients