Skip to content
VS Code

hostaway-kit for VS Code

io.github.stylabs/hostaway-kit

Read-only Hostaway MCP: listings, calendar, inbox, reports. Fixtures, no key. By STYLABS.

client:VS Code transport:stdio runtime:npm

Install hostaway-kit in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "hostaway-account-id",
      "description": "HOSTAWAY_ACCOUNT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hostaway-client-secret",
      "description": "HOSTAWAY_CLIENT_SECRET",
      "password": true
    }
  ],
  "servers": {
    "hostaway-kit": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "hostaway-kit"
      ],
      "env": {
        "HOSTAWAY_ACCOUNT_ID": "${input:hostaway-account-id}",
        "HOSTAWAY_CLIENT_SECRET": "${input:hostaway-client-secret}"
      }
    }
  }
}

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

hostaway-kit in other clients