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

v0.1.0

Published

MCP server for United Airlines - let AI agents search flights, manage bookings, check in, and track MileagePlus miles

Readme

@striderlabs/mcp-united

United Airlines MCP server — let AI agents search flights, manage bookings, check in, and track MileagePlus miles via browser automation.

Built by Strider Labs.

Features

  • Flight Search — Search flights by origin, destination, dates, and passenger count
  • Flight Details — Get detailed info on any United flight including status and aircraft
  • Smart Filtering — Filter results by stops, price, cabin class, and times
  • Seat Selection — Select specific seats for your flights
  • Bag Management — Add checked baggage with fee estimates
  • Booking — Complete flight purchases with explicit confirmation required
  • Reservation Management — View upcoming trips linked to your MileagePlus account
  • Online Check-In — Check in and retrieve boarding passes
  • MileagePlus Balance — View miles, elite status, and recent activity
  • Session Persistence — Cookies automatically saved to ~/.strider/united/

Installation

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

Usage with Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

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

Available Tools

| Tool | Description | |------|-------------| | united_status | Check MileagePlus login status | | united_login | Initiate login flow | | united_logout | Clear session and cookies | | united_search_flights | Search flights (origin, dest, dates, passengers) | | united_get_flight | Get detailed flight info | | united_filter_flights | Filter by stops/price/times/cabin | | united_select_flight | Select outbound or return flight | | united_select_seats | Choose seat assignments | | united_add_bags | Add checked baggage | | united_view_cart | Review booking summary | | united_book | Complete booking (requires confirm=true) | | united_get_reservations | View upcoming trips | | united_check_in | Check in and get boarding pass | | united_get_miles | Get MileagePlus balance and elite status |

Session Storage

Cookies are saved to ~/.strider/united/ between sessions:

  • cookies.json — Browser cookies
  • session.json — Session metadata (login state, MileagePlus number)

Getting Started

  1. Start the server and run united_login to get the login URL
  2. Log in to United.com in your browser — session cookies are saved automatically
  3. Run united_status to confirm authentication
  4. Search flights with united_search_flights

Booking Safety

united_book requires confirm=true to actually purchase tickets. Without it, the tool returns a preview only. Never pass confirm=true without explicit user confirmation of the itinerary and total cost.

Example Workflow

1. united_login           → Get login URL
2. united_status          → Confirm logged in
3. united_search_flights  → Search ORD→SFO April 15
4. united_filter_flights  → Filter to nonstop only
5. united_select_flight   → Pick UA flight
6. united_select_seats    → Choose seat 22A
7. united_add_bags        → Add 1 checked bag
8. united_view_cart       → Review total
9. united_book            → Book (with confirm=true after user confirms)

Known Limitations

  • Requires manual login (United does not support programmatic authentication)
  • Browser automation may break if United updates their UI
  • CAPTCHAs require manual intervention
  • Payment methods must be pre-configured in your United account

License

MIT — Strider Labs