Skip to content
VS Code

bytario for VS Code

io.github.helloderekg/bytario

40 MCP tools for image, PDF, QR, barcode, data, text, color, and render operations.

client:VS Code transport:stdio runtime:npm

Install bytario in VS Code

.vscode/mcp.json

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

bytario in other clients