New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@striderlabs/mcp-airbnb

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@striderlabs/mcp-airbnb

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

latest
npmnpm
Version
1.1.1
Version published
Weekly downloads
15
7.14%
Maintainers
1
Weekly downloads
 
Created
Source

@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

ToolDescription
airbnb_statusCheck login status and session info
airbnb_loginInitiate login flow (returns URL + instructions)
airbnb_logoutClear session and cookies
airbnb_searchSearch listings by location, dates, guests
airbnb_get_listingGet full listing details by ID or URL
airbnb_check_availabilityCheck if a listing is available for dates
airbnb_get_priceGet full price breakdown (nightly, cleaning, service, taxes, total)
airbnb_save_listingSave a listing to wishlist
airbnb_get_savedView saved wishlists
airbnb_bookBook a listing (requires confirm=true + user confirmation)
airbnb_get_reservationsView upcoming or past reservations
airbnb_cancel_reservationCancel a reservation (requires confirm=true)
airbnb_message_hostSend a message to a host
airbnb_get_reviewsGet 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.

  • Ask your AI agent: "Check my Airbnb login status"
  • If not logged in, use airbnb_login to get the login URL
  • Open the URL in your browser and log in
  • 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

Keywords

mcp

FAQs

Package last updated on 17 Jun 2026

Related posts