prosperkartik/hostaway-mcp

๐Ÿš† Travel & Transportation
0 Views
0 Installs

๐Ÿ“‡ โ˜๏ธ - MCP server for the Hostaway property management system (vacation rentals & short-term rentals). 10 read-only tools across listings, reservations, calendar availability, guest conversations, and owner financials.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "prosperkartik-hostaway-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "prosperkartik-hostaway-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

@prosperkartik/hostaway-mcp

Hostaway

Model Context Protocol (MCP) server for the Hostaway PMS โ€” connect Claude to your vacation rental ops.

@prosperkartik/hostaway-mcp connects Claude (in Claude Code, Claude Desktop, or any MCP-compatible client) to your Hostaway account โ€” listings, reservations, calendar availability, guest messaging, and financials. Authored by an engineer who has integrated Hostaway, Ciirus, and major OTA APIs (Airbnb, VRBO, Booking.com, Expedia, Marriott) in production for short-term rental operators since 2022.

npm version license

Hostaway is a trademark of Hostaway Inc. This project is community-built and not affiliated with or endorsed by Hostaway.

Why this server

Three reasons:

  1. Tool coverage. 10 read-only tools across listings, reservations, calendar, conversations, financials, and a health-check โ€” broader surface than other community MCP servers in this space.
  2. Cleaner auth UX. Takes the two credentials Hostaway gives you on the API settings page โ€” Account ID + API Key โ€” and handles the OAuth token exchange internally. No "go generate a bearer token elsewhere first" step.
  3. Built by someone who works the API. The author has 3+ years of production Hostaway / Ciirus integration work behind the design decisions. Tools map to real operator workflows, not just REST endpoints.

Tools (v0.1)

All v0.1 tools are read-only. Write operations are coming in later versions, gated behind explicit confirmation.

ToolDescription
whoamiHealth-check โ€” returns connected account counts (listings, reservations, conversations, owner statements, users). Run this first to confirm setup works.
list_listingsList properties on the account
get_listingFull detail for a single listing โ€” location, capacity, pricing, reputation, channel URLs
list_reservationsList reservations, with optional filters by arrival date range and status
get_reservationFull detail for a single reservation โ€” guest, dates, pricing, channel
list_calendarPer-day availability for a listing across a date range โ€” answers "is property X free between A and B?"
list_conversationsList guest message threads with unread state and last activity
list_unread_conversationsOnly conversations with unread guest messages โ€” answers "who's waiting on a reply?"
get_conversation_messagesFull message history of a single conversation
list_owner_statementsList owner financial statements

Quick start

1. Get your Hostaway API credentials

In your Hostaway operator account โ†’ Settings โ†’ Hostaway API. Generate API credentials. You'll get an Account ID and an API Key.

2. Add to Claude Code

claude mcp add hostaway \
  --scope user \
  -e HOSTAWAY_ACCOUNT_ID=your-account-id \
  -e HOSTAWAY_API_KEY=your-api-key \
  -- npx -y @prosperkartik/hostaway-mcp

(Or use --scope local to install for the current project only.)

3. Or add to Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) and add:

{
  "mcpServers": {
    "hostaway": {
      "command": "npx",
      "args": ["-y", "@prosperkartik/hostaway-mcp"],
      "env": {
        "HOSTAWAY_ACCOUNT_ID": "your-account-id",
        "HOSTAWAY_API_KEY": "your-api-key"
      }
    }
  }
}

Restart Claude Desktop. The Hostaway tools appear in the tools picker.

4. Try it

Ask Claude things like:

  • "Run whoami to confirm Hostaway is connected."
  • "List my Hostaway listings."
  • "What reservations are checking in next week?"
  • "Is listing 12345 available May 10โ€“17?"
  • "Do I have any unread guest messages?"
  • "Show me the conversation with [guest]."

Example output (placeholder data)

> List my Hostaway listings.

Found 3 listings:

| ID    | Name              | Location          | Beds | Baths | Capacity | Status |
|-------|-------------------|-------------------|------|-------|----------|--------|
| 10001 | Sample Apt 2BR    | Sample City, US   | 2    | 2     | 4        | active |
| 10002 | Sample Loft       | Sample City, US   | 1    | 1     | 2        | active |
| 10003 | Sample Beachfront | Sample Beach, US  | 3    | 2     | 6        | active |
> Is listing 10001 available May 10โ€“17?

# Calendar for listing 10001
8 days returned (2026-05-10 โ†’ 2026-05-17)  ยท  6 available, 2 reserved, 0 blocked

| Date       | Available | Status   | Price | Min stay | Reserved | Blocked | Note |
|------------|-----------|----------|-------|----------|----------|---------|------|
| 2026-05-10 | โœ“         | available| 220   | 2        | 0        | 0       |      |
| 2026-05-11 | โœ“         | available| 220   | 2        | 0        | 0       |      |
| 2026-05-12 | โœ—         | reserved | 220   | 2        | 1        | 0       |      |
| ...                                                                            |

Configuration

Env varRequiredDescription
HOSTAWAY_ACCOUNT_IDyesYour Hostaway account ID (acts as OAuth client_id)
HOSTAWAY_API_KEYyesYour Hostaway API secret (acts as OAuth client_secret)

The server exchanges those for a bearer token at startup and caches it in memory for the lifetime of the process.

Local development

git clone https://github.com/prosperkartik/hostaway-mcp.git
cd hostaway-mcp
npm install
cp .env.example .env  # fill in credentials
npm run build
npm start

Hot-reload via tsx:

npm run dev

Roadmap

  • v0.1 โ€” 10 read-only tools across listings, reservations, calendar, conversations, financials, and health-check
  • v0.2 โ€” Tasks (list_tasks, get_task); Cancellation policies; Custom fields read
  • v0.3 โ€” Guest payments read; Webhooks read
  • v0.4+ โ€” Write operations (send guest messages, update calendar blocks, create tasks) gated behind explicit confirm: true

Have a request? Open an issue or start a discussion.

Security

  • Credentials live in environment variables only โ€” never written to disk by this server
  • The bearer token lives in process memory; no persistent storage
  • v0.1 is read-only end-to-end; nothing in this codebase can mutate Hostaway data
  • For multi-property operators: the Hostaway API returns data scoped to the account whose credentials you supply, so cross-account access is not possible

Contributing

Issues and PRs welcome. The codebase is small and easy to read; start at src/index.ts.

License

MIT โ€” see LICENSE.

Author

Built by Kartik Vats (@prosperkartik) โ€” AI engineer at Kodeit. Three years of production work on PMS / OTA integrations and LLM tooling.

If you're a vacation rental operator or hospitality tech team and want help wiring AI into your ops, get in touch via kodeit.io or email prosperkartik@gmail.com.

Related MCP Servers

alcylu/nightlife-mcp

๐Ÿ“‡ โ˜๏ธ - MCP server for Tokyo nightlife event discovery, venue search, performer info, AI recommendations, and VIP table booking.

๐Ÿš† Travel & Transportation0 views
amirdaraee/luxembourg-mcp

๐ŸŽ–๏ธ ๐Ÿ โ˜๏ธ ๐Ÿ  - Keyless access to official Luxembourg public data: laws, statistics, live parking and traffic, weather alerts, environment, parliament, geodata, GTFS stops, and the national open-data catalogue. 21 read-only tools, zero dependencies; hosted endpoint at mcp.luxembourg-mcp.com or local Python server. No API keys.

๐Ÿš† Travel & Transportation0 views
Autonomad1/autonomad-travel

๐Ÿ“‡ โ˜๏ธ - AI travel agent over MCP โ€” live flights, hotels, activities, and events worldwide, then completes the booking on autonomad.ai (free signup at checkout, first month of Premium included).

๐Ÿš† Travel & Transportation0 views
campertunity/mcp-server

๐ŸŽ–๏ธ ๐Ÿ“‡ ๐Ÿ  - Search campgrounds around the world on campertunity, check availability, and provide booking links

๐Ÿš† Travel & Transportation0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it โ†’
โ˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.