@pullapi/airbnb-scraper-mcp
v1.0.0
Published
Airbnb MCP server — vacation rental search, listing details & guest reviews. For Claude, Cursor & AI agents.
Maintainers
Readme
Airbnb Scraper MCP Server
An MCP server that provides real-time Airbnb data — search vacation rentals, get listing details with amenities and host info, and read guest reviews — for use with Claude, Cursor, and other MCP-compatible AI tools.
Features
- Search Listings — Search Airbnb for vacation rentals by location and dates
- Get Listing — Get full Airbnb listing details including amenities, host info, and photos
- Get Reviews — Get guest reviews for an Airbnb listing
Tools
search_listings
Search Airbnb for vacation rentals by location and dates
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| location | string | Yes | Destination city or area |
| checkin | string | No | Check-in date (YYYY-MM-DD) |
| checkout | string | No | Check-out date (YYYY-MM-DD) |
| adults | number | No | Number of adult guests (default: 1) |
get_listing
Get full Airbnb listing details including amenities, host info, and photos
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| property_id | string | Yes | Airbnb property/listing ID |
get_reviews
Get guest reviews for an Airbnb listing
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| property_id | string | Yes | Airbnb property/listing ID |
| limit | number | No | Number of reviews to return (default: 20) |
Configuration
Get your API key from RapidAPI.
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"airbnb": {
"command": "npx",
"args": ["-y", "@pullapi/airbnb-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}Usage with Cursor
Add to your Cursor MCP settings (.cursor/mcp.json):
{
"mcpServers": {
"airbnb": {
"command": "npx",
"args": ["-y", "@pullapi/airbnb-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}License
MIT
