Skip to content
VS Code

doublespeed — Xcode as an API for VS Code

ai.doublespeed/mcp

Build, test and run iOS apps on a remote Mac from any machine. XcodeBuildMCP-compatible tools.

client:VS Code transport:stdio runtime:npm

Install doublespeed — Xcode as an API in VS Code

.vscode/mcp.json

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

doublespeed — Xcode as an API in other clients