@striderlabs/mcp-ihg

@striderlabs/mcp-ihg

Enables hotel search, booking, reservation management, and rewards tracking for IHG hotels via browser automation.

Category
访问服务器

README

@striderlabs/mcp-ihg

MCP server connector for IHG Hotels (InterContinental, Holiday Inn, Kimpton, Crowne Plaza, and more) using Playwright browser automation.

Installation

npm install -g @striderlabs/mcp-ihg
npx playwright install chromium

Or install from source:

git clone https://github.com/markswendsen-code/mcp-ihg
cd mcp-ihg
npm install
npm run build
npx playwright install chromium

Claude Desktop Configuration

Add to your ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "ihg": {
      "command": "striderlabs-mcp-ihg"
    }
  }
}

Or with npx:

{
  "mcpServers": {
    "ihg": {
      "command": "npx",
      "args": ["-y", "@striderlabs/mcp-ihg"]
    }
  }
}

Tools

Authentication

ihg_login

Log in to your IHG One Rewards account. Required before booking, viewing reservations, or accessing rewards.

{
  "email": "your@email.com",
  "password": "yourpassword"
}

Hotel Search

ihg_search_hotels

Search for available hotels by location and dates.

{
  "location": "Chicago, IL",
  "check_in": "2025-06-15",
  "check_out": "2025-06-18",
  "guests": 2,
  "brand": "Holiday Inn"
}

Supported brands: InterContinental, Kimpton, Hotel Indigo, Crowne Plaza, voco, Holiday Inn, Holiday Inn Express, Candlewood Suites, Staybridge Suites, avid, Even Hotels

Returns: List of hotels with ID, name, brand, address, star rating, and lowest nightly rate.

ihg_get_hotel_details

Get full details for a specific hotel.

{
  "hotel_id": "ORDHA"
}

Returns: Amenities, policies, check-in/out times, contact info, images.

ihg_get_room_rates

Get available room types and rates for specific dates.

{
  "hotel_id": "ORDHA",
  "check_in": "2025-06-15",
  "check_out": "2025-06-18"
}

Returns: Room types with rates, refundability, breakfast inclusion, and points earning.

Reservations

ihg_book_room

Book a hotel room (requires login).

{
  "hotel_id": "ORDHA",
  "room_type": "King Standard",
  "check_in": "2025-06-15",
  "check_out": "2025-06-18",
  "guest_info": {
    "firstName": "John",
    "lastName": "Doe",
    "email": "john@example.com",
    "phone": "+1-555-0100",
    "cardNumber": "4111111111111111",
    "cardExpiry": "12/27",
    "cardCvv": "123",
    "specialRequests": "High floor please"
  }
}

Returns: Confirmation number and booking details.

ihg_get_reservations

Get all upcoming reservations (requires login).

Returns: List of reservations with dates, hotel, and status.

ihg_get_reservation_details

Get full details for a reservation (requires login).

{
  "confirmation_number": "12345678"
}

ihg_cancel_reservation

Cancel a reservation (requires login).

{
  "confirmation_number": "12345678"
}

ihg_modify_reservation

Modify dates or details of a reservation (requires login).

{
  "confirmation_number": "12345678",
  "changes": {
    "check_in": "2025-06-16",
    "check_out": "2025-06-19",
    "special_requests": "Early check-in requested"
  }
}

IHG One Rewards

ihg_get_rewards_balance

Get current points balance and tier status (requires login).

Returns: Points balance, tier, expiration info, nights to next tier.

ihg_get_rewards_history

Get points transaction history (requires login).

Returns: List of points earned/redeemed with dates and descriptions.

ihg_redeem_points

Check points redemption options for a stay (requires login).

{
  "hotel_id": "ORDHA",
  "check_in": "2025-06-15",
  "check_out": "2025-06-18"
}

Returns: Points required and available redemption options.

Environment Variables

Variable Description
IHG_HEADLESS Set to false to show browser window (default: true)

How It Works

This MCP server uses Playwright to automate a Chromium browser session on the IHG website. It:

  1. Maintains a persistent browser session across tool calls
  2. Handles login state so you only need to authenticate once
  3. Navigates the IHG website to perform searches, bookings, and account management
  4. Returns structured JSON data for all operations

Supported IHG Brands

  • InterContinental Hotels & Resorts
  • Kimpton Hotels & Restaurants
  • Hotel Indigo
  • Crowne Plaza
  • voco Hotels
  • Holiday Inn
  • Holiday Inn Express
  • Holiday Inn Club Vacations
  • Candlewood Suites
  • Staybridge Suites
  • avid Hotels
  • Even Hotels
  • Regent Hotels & Resorts
  • Six Senses Hotels Resorts Spas
  • HUALUXE Hotels & Resorts

Requirements

  • Node.js 18+
  • Playwright Chromium (npx playwright install chromium)
  • An IHG One Rewards account (free to create at ihg.com)

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选