Skip to content
VS Code

hostaway for VS Code

io.github.uncfreak1255-code/hostaway

Read-only MCP server for Hostaway PMS — guest conversations, reservations, and listings

client:VS Code transport:stdio runtime:npm

Install hostaway in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "hostaway-api-token",
      "description": "HOSTAWAY_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "hostaway": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "hostaway-mcp"
      ],
      "env": {
        "HOSTAWAY_API_TOKEN": "${input:hostaway-api-token}"
      }
    }
  }
}

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

hostaway in other clients