Skip to content
VS Code

Spill for VS Code

io.github.vicc/spill

Pull TestFlight screenshot feedback from App Store Connect into AI coding agents.

client:VS Code transport:stdio runtime:npm

Install Spill in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "asc-issuer-id",
      "description": "ASC_ISSUER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asc-key-id",
      "description": "ASC_KEY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asc-private-key-path",
      "description": "ASC_PRIVATE_KEY_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asc-app-id",
      "description": "ASC_APP_ID",
      "password": true
    }
  ],
  "servers": {
    "spill": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@viccalexander/spill"
      ],
      "env": {
        "ASC_ISSUER_ID": "${input:asc-issuer-id}",
        "ASC_KEY_ID": "${input:asc-key-id}",
        "ASC_PRIVATE_KEY_PATH": "${input:asc-private-key-path}",
        "ASC_APP_ID": "${input:asc-app-id}"
      }
    }
  }
}

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

Spill in other clients