Skip to content
VS Code

AIR SDK for VS Code

io.github.arcededev/air-sdk

Collective intelligence for browser automation agents. Site capabilities, selectors, and extraction.

client:VS Code transport:stdio runtime:npm

Install AIR SDK in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "air-api-key",
      "description": "AIR_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "air-sdk": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@arcede/air-sdk"
      ],
      "env": {
        "AIR_API_KEY": "${input:air-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

AIR SDK in other clients