npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@striderlabs/mcp-ihg

v1.0.0

Published

MCP server connector for IHG Hotels (Holiday Inn, InterContinental, etc.) using Playwright browser automation

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": "[email protected]",
  "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": "[email protected]",
    "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