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-hyatt

v1.0.0

Published

MCP server connector for Hyatt Hotels using Playwright browser automation

Downloads

55

Readme

@striderlabs/mcp-hyatt

MCP (Model Context Protocol) server for Hyatt Hotels — search properties, manage reservations, and interact with World of Hyatt rewards using Playwright browser automation.

Installation

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

Usage with Claude Desktop

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

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

Usage with MCP CLI

mcp run striderlabs-mcp-hyatt

Tools

hyatt_login

Authenticate with your Hyatt account. Required before using account-specific tools.

| Parameter | Type | Required | Description | |-----------|--------|----------|--------------------------| | email | string | Yes | Hyatt account email | | password | string | Yes | Hyatt account password |


hyatt_search_hotels

Search for available Hyatt hotels by location and dates.

| Parameter | Type | Required | Description | |------------|--------|----------|--------------------------------------------------| | location | string | Yes | City, airport code, or address | | check_in | string | Yes | Check-in date (YYYY-MM-DD) | | check_out | string | Yes | Check-out date (YYYY-MM-DD) | | guests | number | No | Number of guests (default: 1) | | brand | string | No | Filter by brand (e.g. "Park Hyatt", "Andaz") |

Supported brands: Park Hyatt, Grand Hyatt, Hyatt Regency, Hyatt Place, Hyatt House, Alila, Andaz, Thompson Hotels, Caption by Hyatt, Unbound Collection, Joie de Vivre, Destination by Hyatt, Hyatt Ziva, Hyatt Zilara, Miraval.


hyatt_get_hotel_details

Get detailed information about a specific Hyatt property.

| Parameter | Type | Required | Description | |-----------|--------|----------|----------------------| | hotel_id | string | Yes | Hotel ID from search |


hyatt_get_room_rates

Get available room types and current rates for specific dates.

| Parameter | Type | Required | Description | |-----------|--------|----------|--------------------------------| | hotel_id | string | Yes | Hotel ID | | check_in | string | Yes | Check-in date (YYYY-MM-DD) | | check_out | string | Yes | Check-out date (YYYY-MM-DD) | | guests | number | No | Number of guests (default: 1) |


hyatt_book_room

Book a hotel room. Requires prior login.

| Parameter | Type | Required | Description | |------------|--------|----------|----------------------------------------| | hotel_id | string | Yes | Hotel ID | | room_type | string | Yes | Room type name from hyatt_get_room_rates | | check_in | string | Yes | Check-in date (YYYY-MM-DD) | | check_out | string | Yes | Check-out date (YYYY-MM-DD) | | guest_info | object | Yes | Guest details (see below) |

guest_info fields:

  • firstName (string, required)
  • lastName (string, required)
  • email (string, required)
  • phone (string, optional)
  • specialRequests (string, optional)

hyatt_get_reservations

List all reservations on the logged-in account (upcoming and past).

No parameters required.


hyatt_get_reservation_details

Get full details for a specific reservation.

| Parameter | Type | Required | Description | |---------------------|--------|----------|-------------------------| | confirmation_number | string | Yes | Reservation confirmation number |


hyatt_cancel_reservation

Cancel a reservation. Requires login.

| Parameter | Type | Required | Description | |---------------------|--------|----------|-------------------------| | confirmation_number | string | Yes | Confirmation number to cancel |


hyatt_modify_reservation

Modify an existing reservation. Requires login.

| Parameter | Type | Required | Description | |---------------------|--------|----------|---------------------------------| | confirmation_number | string | Yes | Confirmation number to modify | | changes | object | Yes | Fields to change (see below) |

changes fields (all optional):

  • checkIn (string) — new check-in date
  • checkOut (string) — new check-out date
  • guests (number) — updated guest count
  • roomType (string) — new room type
  • specialRequests (string) — updated special requests

hyatt_get_world_of_hyatt_balance

Get World of Hyatt points balance, tier status, and qualifying nights.

No parameters required. Requires login.


hyatt_get_rewards_history

Get the full points earning and redemption transaction history.

No parameters required. Requires login.


hyatt_redeem_points

Check award availability and view points rates for a hotel.

| Parameter | Type | Required | Description | |-----------|--------|----------|--------------------------------| | hotel_id | string | Yes | Hotel ID | | check_in | string | Yes | Check-in date (YYYY-MM-DD) | | check_out | string | Yes | Check-out date (YYYY-MM-DD) | | guests | number | No | Number of guests (default: 1) |

How It Works

This package uses Playwright to automate a headless Chromium browser that navigates hyatt.com on your behalf. No official API keys are required — it authenticates using your Hyatt account credentials.

Requirements

  • Node.js 18+
  • Chromium (installed via npx playwright install chromium)

License

MIT