Skip to content
VS Code

gpu bridge for VS Code

io.github.fjnunezp75/gpu-bridge

30 GPU-powered AI services as MCP tools. LLM, image, video, audio, embeddings & more.

client:VS Code transport:stdio runtime:npm

Install gpu bridge in VS Code

.vscode/mcp.json

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

gpu bridge in other clients