Connects to the Hostaway property management system with six read-only tools built for hospitality workflows: list unread guest threads, pull conversation context, look up reservation and listing details, and search across both conversations and bookings. You pass a Hostaway API token through the environment and get Claude or Codex access to guest communication and reservation data without writing raw API calls. Intentionally narrow scope: no mutations, no message sending, no booking changes. If you're running a short-term rental operation on Hostaway and want LLM help triaging guest messages or looking up reservation details, this gives you the primitives.
Read-only, hospitality-shaped MCP server for Hostaway.
This repo owns the operator product only: local/npm stdio, six read-only
tools, no Cloudflare Worker, and no Seascape booking surface.
Make Codex and Claude useful in real Hostaway workflows without hand-wiring raw API calls every time.
V1 is intentionally narrow:
list_unread_guest_threadsget_conversation_contextget_reservation_briefget_listing_briefsearch_reservationssearch_conversationsnpm install
npm test
npm run check
npm run build
Run the stdio server locally:
HOSTAWAY_API_TOKEN=your-token-here node dist/cli.js
Create a local npm package tarball:
npm pack
After publish, run without cloning:
npx hostaway-mcp
For local MCP clients, provide HOSTAWAY_API_TOKEN through the environment and
spawn the published npm package over stdio.
The snippets below are pinned to the current published version:
hostaway-mcp@0.2.0
Update that version intentionally when you upgrade.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json.
If you already have top-level keys like preferences, keep them and add
mcpServers alongside them:
{
"mcpServers": {
"hostaway": {
"command": "npx",
"args": ["-y", "hostaway-mcp@0.2.0"],
"env": {
"HOSTAWAY_API_TOKEN": "your-token-here"
}
}
}
}
Restart Claude Desktop after saving the file.
Edit ~/.codex/config.toml and add:
[mcp_servers.hostaway]
command = "npx"
args = ["-y", "hostaway-mcp@0.2.0"]
[mcp_servers.hostaway.env]
HOSTAWAY_API_TOKEN = "your-token-here"
Verify the server is registered:
codex mcp list
If you want to run the repo checkout instead of npm, point the client at the built CLI directly:
{
"command": "node",
"args": ["/absolute/path/to/hostaway-mcp/dist/cli.js"],
"env": {
"HOSTAWAY_API_TOKEN": "your-token-here"
}
}
| Variable | Required | Default | Description |
|---|---|---|---|
HOSTAWAY_API_TOKEN | Yes | — | Hostaway API token used to authenticate all requests. |
HOSTAWAY_BASE_URL | No | Hostaway production URL | Override the API base URL (useful for testing). |
HOSTAWAY_API_TOKEN*secretHostaway API token used to authenticate all requests