hostaway-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@hostaway-mcpShow me my upcoming reservations for this week"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
hostaway-mcp
An open-source Model Context Protocol (MCP) server that connects AI assistants like Claude Desktop, Claude Code, and Cursor to the Hostaway property management API. Query reservations, listings, calendars, financials, and guest conversations using natural language.
Quick Start
Get your Account ID and Client Secret from your Hostaway dashboard under Settings > API
Make sure you have Node.js 18+ installed
Pick your AI client below and add the config — no cloning or building required
Related MCP server: Lodgify MCP Server
Setup
Claude Desktop (Mac & Windows)
Open your Claude Desktop config file:
Mac:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add the following (merge with existing mcpServers if you have other servers configured):
{
"mcpServers": {
"hostaway": {
"command": "npx",
"args": ["-y", "@matt-long-plux/hostaway-mcp"],
"env": {
"HOSTAWAY_ACCOUNT_ID": "YOUR_ACCOUNT_ID",
"HOSTAWAY_CLIENT_SECRET": "YOUR_CLIENT_SECRET"
}
}
}
}Restart Claude Desktop and you're ready to go.
Claude Code
Option 1 — CLI command (quickest):
claude mcp add hostaway \
-e HOSTAWAY_ACCOUNT_ID=YOUR_ACCOUNT_ID \
-e HOSTAWAY_CLIENT_SECRET=YOUR_CLIENT_SECRET \
-- npx -y @matt-long-plux/hostaway-mcpOption 2 — .mcp.json in your project root (good for sharing with teammates):
{
"mcpServers": {
"hostaway": {
"command": "npx",
"args": ["-y", "@matt-long-plux/hostaway-mcp"],
"env": {
"HOSTAWAY_ACCOUNT_ID": "YOUR_ACCOUNT_ID",
"HOSTAWAY_CLIENT_SECRET": "YOUR_CLIENT_SECRET"
}
}
}
}Cursor
Add the same config to your project's .cursor/mcp.json, or go to Cursor Settings > MCP Servers > Add Server and paste:
{
"mcpServers": {
"hostaway": {
"command": "npx",
"args": ["-y", "@matt-long-plux/hostaway-mcp"],
"env": {
"HOSTAWAY_ACCOUNT_ID": "YOUR_ACCOUNT_ID",
"HOSTAWAY_CLIENT_SECRET": "YOUR_CLIENT_SECRET"
}
}
}
}Updating
If you installed a previous version via npx, your system may have a cached copy. To update to the latest release:
npx clear-npx-cacheThen restart your AI client (Claude Desktop, Cursor, etc.). The next launch will automatically pull the latest version.
Alternatively, you can pin @latest in your config to always fetch the newest version on each restart:
"args": ["-y", "@matt-long-plux/hostaway-mcp@latest"]Tools Reference
Reservations
Tool | Description | Key Parameters |
| List reservations with filters |
|
| Get full reservation details |
|
| Update internal host note |
|
| Current + upcoming reservations grouped by property | None |
Listings
Tool | Description | Key Parameters |
| All active listings with metadata |
|
| Full listing details |
|
| Custom field values as name-value map |
|
Calendar
Tool | Description | Key Parameters |
| Availability and pricing calendar |
|
| Find short unbooked gaps between reservations |
|
| Block dates on calendar |
|
| Remove a calendar block |
|
Financials
Tool | Description | Key Parameters |
| Financial breakdown for a reservation |
|
| Aggregated revenue across listings |
|
| Payout report for reconciliation |
|
Conversations
Tool | Description | Key Parameters |
| Recent guest conversations |
|
| Full message thread |
|
| Send message to guest |
|
Read-Only Mode
Set HOSTAWAY_READ_ONLY=true to disable all write/mutation tools. When enabled, the following tools will return an error instead of executing:
update_reservation_host_notecreate_calendar_blockdelete_calendar_blocksend_message
This is useful for shared accounts or when you want to prevent accidental modifications.
Environment Variables
Variable | Required | Description |
| Yes | Your Hostaway account ID (integer) |
| Yes | Your Hostaway API client secret |
| No | Set to |
| No | Token cache TTL in seconds (default: 240) |
Example Queries
Once connected, try asking Claude:
"Show me all upcoming reservations"
"What's the occupancy looking like for my properties next month?"
"Find gap nights across all listings for the next 90 days"
"How much revenue did I make last month?"
"Show me unread guest messages"
"What are the financials for reservation 12345?"
"Generate a payout report for Airbnb bookings in March"
Contributing
Feedback and pull requests are welcome! Please open an issue on GitHub or email matt@plux.com.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- -licenseNot gradedqualityNot gradedmaintenanceEnables AI assistants to interact with Hostaway's property management platform through standardized MCP tools. Provides access to listings, bookings, guest communication, and availability checking for vacation rental management.
- AlicenseAqualityDmaintenanceEnables interaction with the Lodgify vacation rental API to manage properties, bookings, and calendar data. It provides tools for retrieving property details, creating or updating bookings, and monitoring rental availability.82MIT
- AlicenseBqualityBmaintenanceA read-only hospitality-focused MCP server that enables users to retrieve reservation details, listing briefs, and guest conversation contexts from Hostaway. It simplifies hospitality workflows by providing specialized tools for searching threads and viewing reservation data through natural language interfaces.651MIT
- AlicenseAqualityCmaintenanceConnects AI assistants to the Hostaway property management API via 10 read-only tools covering listings, reservations, calendars, guest conversations, and owner statements.10243MIT
Related MCP Connectors
Vacation rental discovery, direct booking, and property protection for AI agents.
Manage your Hostex vacation rentals—properties, reservations, availability, listings, and guest me…
Airbnb stays by location and dates, and full listing details, as structured JSON.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mattlong-plux/hostaway-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server