Skip to content
VS Code

Websupport for VS Code

io.github.tydung26/websupport-mcp

Manage a Websupport account: DNS, FTP, hosting, databases, mailboxes, VPS and invoices.

client:VS Code transport:stdio runtime:npm

Install Websupport in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "websupport-api-key",
      "description": "WEBSUPPORT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "websupport-api-secret",
      "description": "WEBSUPPORT_API_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "websupport-api-base-url",
      "description": "WEBSUPPORT_API_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "websupport-accept-language",
      "description": "WEBSUPPORT_ACCEPT_LANGUAGE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "websupport-allow-write",
      "description": "WEBSUPPORT_ALLOW_WRITE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "websupport-allow-destructive",
      "description": "WEBSUPPORT_ALLOW_DESTRUCTIVE",
      "password": true
    }
  ],
  "servers": {
    "websupport-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "websupport-mcp"
      ],
      "env": {
        "WEBSUPPORT_API_KEY": "${input:websupport-api-key}",
        "WEBSUPPORT_API_SECRET": "${input:websupport-api-secret}",
        "WEBSUPPORT_API_BASE_URL": "${input:websupport-api-base-url}",
        "WEBSUPPORT_ACCEPT_LANGUAGE": "${input:websupport-accept-language}",
        "WEBSUPPORT_ALLOW_WRITE": "${input:websupport-allow-write}",
        "WEBSUPPORT_ALLOW_DESTRUCTIVE": "${input:websupport-allow-destructive}"
      }
    }
  }
}

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

Websupport in other clients