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

v0.1.0

Published

MCP server for Expedia - let AI agents search flights, hotels, cars, and vacation packages, manage trips, and complete bookings

Readme

@striderlabs/mcp-expedia

MCP server for Expedia — let AI agents search flights, hotels, rental cars, and vacation packages, manage trips, and complete bookings via browser automation.

Built by Strider Labs.

Features

  • 14 tools covering the full Expedia travel booking workflow
  • Playwright browser automation with stealth patches to avoid bot detection
  • Session persistence via cookies at ~/.striderlabs/expedia/cookies.json
  • Human-like behavior — random delays, realistic user agent, locale/timezone spoofing
  • CAPTCHA detection with helpful error messages
  • Confirmation gates for destructive actions (checkout) to prevent accidental bookings
  • JSON responses for easy parsing by AI agents

Tools

| Tool | Description | |------|-------------| | status | Check Expedia login status and session info | | login | Initiate Expedia login flow (returns URL + instructions) | | logout | Clear saved session and cookies | | search_flights | Search for flights by origin, destination, dates, and passenger count | | search_hotels | Search for hotels by destination and dates | | search_cars | Search for rental cars by pickup location and dates | | search_packages | Search for vacation packages (flight + hotel bundles) | | get_flight_details | Get detailed info about a specific flight result | | get_hotel_details | Get full hotel details including amenities, room types, and policies | | add_to_trip | Add a flight, hotel, car, or package to your Expedia trip | | view_trip | View the current trip/cart with all items and total price | | get_saved_trips | Retrieve all saved trips from your Expedia account | | checkout | Complete booking for all items in the current trip | | get_itinerary | Get booked itinerary details and confirmation numbers |

Installation

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

Claude Desktop Integration

Add to your claude_desktop_config.json:

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

Or with npx:

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

Authentication

Expedia requires a logged-in session for trip management, checkout, and itinerary access. The server persists your session cookies at ~/.striderlabs/expedia/cookies.json.

Login flow:

  1. Ask the AI agent to run login
  2. Open the returned URL in your browser
  3. Log in to your Expedia account
  4. Run status to verify the session was saved

Search tools (flights, hotels, cars, packages) work without authentication.

Safety

The checkout tool requires confirm: true to actually complete a booking. Without it, the tool returns a preview of the trip contents. Never set confirm: true without explicit user confirmation.

Session Storage

Cookies and session info are stored at:

  • ~/.striderlabs/expedia/cookies.json
  • ~/.striderlabs/expedia/session.json

Development

git clone https://github.com/markswendsen-code/mcp-expedia
cd mcp-expedia
npm install
npm run build
node dist/index.js

License

MIT — © Strider Labs