Vacation rentals platform
## Airbnb MCP Server: Vacation Rental Platform The **Airbnb MCP Server** integrates the global accommodation marketplace directly into Google Antigravity, enabling AI assistants to search listings, manage bookings, and access host tools programmatically. This integration brings vacation rental capabilities to your development workflow. ### Why Airbnb MCP? - **Global Inventory**: Access millions of unique accommodations worldwide - **Diverse Options**: From shared rooms to entire homes and luxury properties - **Experiences**: Access to Airbnb Experiences for activities and tours - **Host Tools**: Manage listings, calendars, and guest communications - **Reviews and Ratings**: Access verified reviews for informed booking decisions ### Key Features #### 1. Listing Search ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find Airbnb listings in Barcelona for 4 guests with a pool next month" }], tools=[{ "name": "airbnb_search", "description": "Search listings" }] ) ``` #### 2. Listing Details ```python # Get listing information response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get full details, amenities, and reviews for this Airbnb listing" }], tools=[{"name": "airbnb_details", "description": "Listing details"}] ) ``` #### 3. Host Management ```python # Manage host listings response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Update my listing availability calendar and adjust weekend pricing" }], tools=[{"name": "airbnb_host", "description": "Host tools"}] ) ``` #### 4. Booking Management ```python # Handle bookings response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Check my upcoming reservations and send check-in instructions" }], tools=[{"name": "airbnb_bookings", "description": "Manage bookings"}] ) ``` ### Configuration ```json { "mcpServers": { "airbnb": { "command": "npx", "args": ["-y", "@anthropic/mcp-airbnb"], "env": { "AIRBNB_API_KEY": "your-airbnb-api-key" } } } } ``` ### Use Cases **Travel Planning**: Build travel apps with accommodation search and booking. **Property Management**: Automate listing management for Airbnb hosts. **Concierge Services**: Create concierge tools that find and book accommodations. **Corporate Travel**: Integrate extended stay options into business travel tools. The Airbnb MCP Server brings vacation rental integration directly into your development workflow, enabling comprehensive accommodation solutions.
{
"mcpServers": {
"airbnb": {
"mcpServers": {
"airbnb": {
"env": {
"AIRBNB_API_KEY": "your-api-key"
},
"args": [
"-y",
"airbnb-mcp-server"
],
"command": "npx"
}
}
}
}
}