@roompanda/mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ROOMPANDA_API_KEY | Yes | Your Roompanda API key (sk_live_... or sk_test_...) | |
| ROOMPANDA_BASE_URL | No | Optional API base override |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_propertyB | Get the property this key is connected to (name + id). |
| get_calendarA | Per-date availability for a date range: which dates are closed, closed-to-arrival/departure, and min-stay. Use to drive a date picker before searching. |
| list_roomsA | List the property's rooms with descriptions, photos and facilities (unpriced). |
| search_availabilityA | Find bookable rooms and priced rate plans for a stay. Returns each room's rates with total_price and a rate id to book. |
| list_ratesB | List rate-plan definitions and cancellation policies. |
| list_extrasA | List the add-ons / upsells catalogue. |
| create_bookingA | Create a real booking. Use room ids + rate ids from search_availability. Pay-at-hotel rates confirm immediately; rates needing an online deposit return a payment_url to send the guest to. |
| get_bookingB | Retrieve a booking by its id. |
| list_bookingsC | List the property's bookings, newest first. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 9 tools
Each tool has a clearly distinct purpose: creating bookings, retrieving them, checking availability, listing rooms/rates/extras, and property info. There is no confusion or overlap.
All tools follow a consistent verb_noun pattern in snake_case (e.g., create_booking, list_rooms, search_availability), making them predictable and easy to understand.
9 tools is well-scoped for a property management and booking system. Each tool covers a necessary operation without excess or deficiency.
The set covers the core workflow (search, create, retrieve, list bookings, and property details). Minor gaps exist: no update or cancel booking, but these are secondary operations.