Skip to content
VS Code

sslwebsites for VS Code

io.github.jyswee/sslwebsites

SSL certificate management for coding agents. Issue, renew, monitor certs. 10 tools stdio.

client:VS Code transport:stdio runtime:npm

Install sslwebsites in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ssl-api-key",
      "description": "SSL_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "sslwebsites": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "sslwebsites"
      ],
      "env": {
        "SSL_API_KEY": "${input:ssl-api-key}"
      }
    }
  }
}

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

sslwebsites in other clients