Add to Claude Code
0 addsAdd this MCP server to Claude Code.
Name: Booking PMS MCP
Merge into: ~/.claude/mcp.json under mcpServers
---
{
"mcpServers": {
"booking-pms": {
"command": "npx",
"args": ["-y", "@anthropic-community/mcp-booking-pms"],
"env": {
"PMS_API_URL": "https://your-pms.example.com/api/v2",
"PMS_API_KEY": "<YOUR_API_KEY>",
"PMS_PROPERTY_ID": "<YOUR_PROPERTY_ID>"
}
}
}
}
// ── Setup ────────────────────────────────────────────────────────────────────
// 1. Get API credentials from your PMS provider (Cloudbeds, Mews, Oracle OPERA, etc.)
// 2. Set PMS_API_URL to your provider's API endpoint
// 3. Set PMS_PROPERTY_ID to your property identifier
//
// ── Available tools ──────────────────────────────────────────────────────────
// list_reservations query reservations by date range, status, and guest
// get_reservation fetch full reservation details with billing
// check_availability check room availability for a date range and type
// list_room_types retrieve room categories with rates and descriptions
// get_guest_profile fetch guest history, preferences, and loyalty status
// update_rates modify room rates by date and room type
Paste into Claude Code to connect this MCP server.
How to add
Full guide →Click Add, then paste into Claude Code. Claude will connect the MCP server in your settings.
Target: .claude/mcp.json → mcpServers