Skip to content
VS Code

ZynoHosting for VS Code

io.github.zyno-io/zynohosting

Manage ZynoHosting sites and create, discover, embed, and configure ZynoForms through local stdio.

client:VS Code transport:stdio runtime:npm

Install ZynoHosting in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "zynohosting-mcp-roots",
      "description": "ZYNOHOSTING_MCP_ROOTS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zynohosting-api-key",
      "description": "ZYNOHOSTING_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zyno-suite-api-url",
      "description": "ZYNO_SUITE_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zyno-auth-api-url",
      "description": "ZYNO_AUTH_API_URL",
      "password": true
    }
  ],
  "servers": {
    "zynohosting": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@zyno-io/zynohosting"
      ],
      "env": {
        "ZYNOHOSTING_MCP_ROOTS": "${input:zynohosting-mcp-roots}",
        "ZYNOHOSTING_API_KEY": "${input:zynohosting-api-key}",
        "ZYNO_SUITE_API_URL": "${input:zyno-suite-api-url}",
        "ZYNO_AUTH_API_URL": "${input:zyno-auth-api-url}"
      }
    }
  }
}

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

ZynoHosting in other clients