Skip to content
VS Code

frostbyte for VS Code

io.github.ozorown/frostbyte

MCP server giving AI agents access to 40+ APIs: geo, crypto, screenshots, DNS, and more

client:VS Code transport:stdio runtime:oci

Install frostbyte in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "frostbyte-api-key",
      "description": "FROSTBYTE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "frostbyte-base-url",
      "description": "FROSTBYTE_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "frostbyte": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/ozorown/frostbyte-mcp:latest"
      ],
      "env": {
        "FROSTBYTE_API_KEY": "${input:frostbyte-api-key}",
        "FROSTBYTE_BASE_URL": "${input:frostbyte-base-url}"
      }
    }
  }
}

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

frostbyte in other clients