Skip to content
VS Code

teztun for VS Code

io.github.asadullokhn/teztun

Manage TezTun tunnels, subdomains, and service tokens from any MCP-compatible AI client.

client:VS Code transport:stdio runtime:npm

Install teztun in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "teztun-token",
      "description": "TEZTUN_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "teztun": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@asadullokhn/teztun-mcp"
      ],
      "env": {
        "TEZTUN_TOKEN": "${input:teztun-token}"
      }
    }
  }
}

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

teztun in other clients