Skip to content
VS Code

hostinger ssh mcp for VS Code

io.github.ohvenkat/hostinger-ssh-mcp

MCP server for connecting Claude Code to a Hostinger VPS via SSH

client:VS Code transport:stdio runtime:npm

Install hostinger ssh mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vps-host",
      "description": "VPS_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vps-user",
      "description": "VPS_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vps-pass",
      "description": "VPS_PASS",
      "password": true
    }
  ],
  "servers": {
    "hostinger-ssh-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "hostinger-ssh-mcp"
      ],
      "env": {
        "VPS_HOST": "${input:vps-host}",
        "VPS_USER": "${input:vps-user}",
        "VPS_PASS": "${input:vps-pass}"
      }
    }
  }
}

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

hostinger ssh mcp in other clients