Skip to content
VS Code

Hostim for VS Code

io.github.hostimdev/hostim

Deploy and manage apps, databases, volumes and domains on Hostim, an EU cloud hosting platform.

client:VS Code transport:stdio runtime:oci

Install Hostim in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "hostim-token",
      "description": "HOSTIM_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "hostim": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/hostimdev/cli:v0.1.36"
      ],
      "env": {
        "HOSTIM_TOKEN": "${input:hostim-token}"
      }
    }
  }
}

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

Hostim in other clients