Skip to content
VS Code

Boyce for VS Code

io.github.boyce-io/boyce

Deterministic SQL compiler for AI agents. Your agent stops guessing SQL.

client:VS Code transport:stdio runtime:pypi

Install Boyce in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "boyce-db-url",
      "description": "BOYCE_DB_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "boyce-provider",
      "description": "BOYCE_PROVIDER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "boyce": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "boyce"
      ],
      "env": {
        "BOYCE_DB_URL": "${input:boyce-db-url}",
        "BOYCE_PROVIDER": "${input:boyce-provider}",
        "ANTHROPIC_API_KEY": "${input:anthropic-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

Boyce in other clients