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

v1.1.1

Published

MCP server for Airbnb - let AI agents search listings, check availability, manage reservations, and book stays

Readme

@striderlabs/mcp-airbnb

MCP server for Airbnb — lets AI agents search listings, check availability, manage reservations, and book stays via browser automation.

Built by Strider Labs.

Features

  • 14 tools covering the full Airbnb workflow
  • Playwright-based browser automation (headless Chromium)
  • Stealth patches to avoid bot detection
  • Cookie persistence for session management
  • Random delays between actions to mimic human behavior
  • Graceful CAPTCHA handling
  • JSON responses with success/error fields on all tools

Tools

| Tool | Description | |------|-------------| | airbnb_status | Check login status and session info | | airbnb_login | Initiate login flow (returns URL + instructions) | | airbnb_logout | Clear session and cookies | | airbnb_search | Search listings by location, dates, guests | | airbnb_get_listing | Get full listing details by ID or URL | | airbnb_check_availability | Check if a listing is available for dates | | airbnb_get_price | Get full price breakdown (nightly, cleaning, service, taxes, total) | | airbnb_save_listing | Save a listing to wishlist | | airbnb_get_saved | View saved wishlists | | airbnb_book | Book a listing (requires confirm=true + user confirmation) | | airbnb_get_reservations | View upcoming or past reservations | | airbnb_cancel_reservation | Cancel a reservation (requires confirm=true) | | airbnb_message_host | Send a message to a host | | airbnb_get_reviews | Get guest reviews for a listing |

Installation

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

Usage with Claude Desktop

Add to your claude_desktop_config.json:

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

Or with npx:

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

Authentication

Airbnb requires manual login (no API key). The server saves session cookies so you only need to log in once.

  1. Ask your AI agent: "Check my Airbnb login status"
  2. If not logged in, use airbnb_login to get the login URL
  3. Open the URL in your browser and log in
  4. Run airbnb_status to confirm the session is active

Cookies are stored at ~/.strider/airbnb/cookies.json.

Safety

  • Booking (airbnb_book) and cancellation (airbnb_cancel_reservation) require explicit confirm=true — they return a preview otherwise
  • The agent will never book or cancel without your confirmation
  • All destructive actions include clear warnings

Development

npm install
npx playwright install chromium
npm run build
npm start

License

MIT — Strider Labs