Skip to content
VS Code

gemini mcp for VS Code

io.github.rlabs-inc/gemini-mcp

Gemini 3 MCP server with 30+ tools: images, video, research, TTS, code exec & CLI

client:VS Code transport:stdio runtime:npm

Install gemini mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gemini-api-key",
      "description": "GEMINI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gemini-output-dir",
      "description": "GEMINI_OUTPUT_DIR",
      "password": true
    }
  ],
  "servers": {
    "gemini-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@rlabs-inc/gemini-mcp"
      ],
      "env": {
        "GEMINI_API_KEY": "${input:gemini-api-key}",
        "GEMINI_OUTPUT_DIR": "${input:gemini-output-dir}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

gemini mcp in other clients