@striderlabs/mcp-ihg
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| IHG_HEADLESS | No | Set to false to show browser window (default: true) | true |
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| ihg_loginA | Log in to your IHG One Rewards account. Required before using most other tools. Maintains a browser session for subsequent calls. |
| ihg_search_hotelsA | Search for IHG hotels by location, dates, and guest count. Supports all IHG brands (Holiday Inn, InterContinental, Kimpton, Crowne Plaza, etc.). |
| ihg_get_hotel_detailsA | Get detailed information about a specific IHG hotel including amenities, policies, contact info, and photos. |
| ihg_get_room_ratesA | Get available room types and rates for a hotel on specific dates, including points options. |
| ihg_book_roomA | Book a hotel room at an IHG property. Requires login. Will complete the full booking flow. |
| ihg_get_reservationsA | Get all upcoming and recent reservations for the logged-in IHG account. |
| ihg_get_reservation_detailsA | Get full details for a specific IHG reservation by confirmation number. |
| ihg_cancel_reservationA | Cancel an IHG hotel reservation. Requires login. Check cancellation policy before cancelling. |
| ihg_modify_reservationA | Modify an existing IHG reservation (dates, guests, special requests, room type). |
| ihg_get_rewards_balanceA | Get IHG One Rewards points balance, tier status, and account summary for the logged-in user. |
| ihg_get_rewards_historyA | Get IHG One Rewards points transaction history (earnings and redemptions). |
| ihg_redeem_pointsC | Check points redemption options for a hotel stay and initiate a points booking. |
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 12 tools
Each tool targets a distinct action: login, hotel search, hotel details, room rates, booking, reservation management, and rewards. Even similar tools like get_reservations vs get_reservation_details are clearly separate list vs detail operations.
All tool names follow a consistent 'ihg_<verb>_<noun>' pattern using snake_case. Verbs are clear and consistent (get, search, book, cancel, modify, redeem), making the API predictable.
The 12 tools are well-scoped for the IHG hotel booking and rewards domain. Each tool covers a necessary function without redundancy, and the count is within the ideal 3-15 range.
The tool set covers the full lifecycle: authentication, hotel search/details/rates, booking, reservation retrieval/modification/cancellation, and rewards balance/history/redemption. No obvious gaps for the intended domain.