Airbnb
Search for Airbnb listings and retrieve their details.
Airbnb MCP Server
MCP Server for searching Airbnb and get listing details.
Tools
-
airbnb_search- Search for Airbnb listings
- Required Input:
location(string) - Optional Inputs:
placeId(string)checkin(string, YYYY-MM-DD)checkout(string, YYYY-MM-DD)adults(number)children(number)infants(number)pets(number)minPrice(number)maxPrice(number)cursor(string)ignoreRobotsText(boolean)
- Returns: Array of listings with details like name, price, location, etc.
-
airbnb_listing_details- Get detailed information about a specific Airbnb listing
- Required Input:
id(string) - Optional Inputs:
checkin(string, YYYY-MM-DD)checkout(string, YYYY-MM-DD)adults(number)children(number)infants(number)pets(number)ignoreRobotsText(boolean)
- Returns: Detailed listing information including description, host details, amenities, pricing, etc.
Features
- Respects Airbnb's robots.txt rules
- Uses cheerio for HTML parsing
- No API key required
- Returns structured JSON data
- Reduces context load by flattening and picking data
Setup
Installing on Claude Desktop
Before starting make sure Node.js is installed on your desktop for npx to work.
-
Go to: Settings > Developer > Edit Config
-
Add the following to your
claude_desktop_config.json:
{
"mcpServers": {
"airbnb": {
"command": "npx",
"args": [
"-y",
"@openbnb/mcp-server-airbnb"
]
}
}
}
To ignore robots.txt for all requests, use this version with --ignore-robots-txt args
{
"mcpServers": {
"airbnb": {
"command": "npx",
"args": [
"-y",
"@openbnb/mcp-server-airbnb",
"--ignore-robots-txt"
]
}
}
}
- Restart Claude Desktop and plan your next trip that include Airbnbs!
Other Option: Installing via Smithery
To install mcp-server-airbnb for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @openbnb-org/mcp-server-airbnb --client claude
Build (for devs)
npm install
npm run build
License
This MCP server is licensed under the MIT License.
Disclaimer
Airbnb is a trademark of Airbnb, Inc. OpenBnB is not related to Airbnb, Inc. or its subsidiaries
関連サーバー
Bright Data
スポンサーDiscover, extract, and interact with the web - one interface powering automated access across the public internet.
Puppeteer
A server for browser automation using Puppeteer, enabling web scraping, screenshots, and JavaScript execution.
YouTube
Fetch YouTube subtitles
Web Scout
An MCP server for web search and content extraction using DuckDuckGo.
Urlbox Full Page Screenshots
An MCP server for the Urlbox Screenshot API. It enables your client to take screenshots, generate PDFs, extract HTML/markdown, and more from websites.
Readability Parser
Extracts and transforms webpage content into clean, LLM-optimized Markdown using the Readability algorithm.
Intercept
Give your AI the ability to read the web. Fetches URLs as clean markdown with 9 fallback strategies. Handles tweets, YouTube, arXiv, PDFs, and regular pages.
Douyin MCP Server
Extract watermark-free video links and copy from Douyin.
rssmcp
Fetches RSS feeds and returns entries as formatted text, with support for OPML configuration.
Browser Use
Automate browser tasks using the Browser Use API.
Puppeteer
Provides browser automation using Puppeteer, enabling interaction with web pages, taking screenshots, and executing JavaScript.