MCP VRBO
Enables searching and retrieving VRBO vacation rental listings using browser automation. Supports filtering by location, dates, guests, price range, and property features to find and compare vacation rentals.
README
MCP VRBO
MCP server for searching VRBO vacation rental listings using browser automation.
Overview
This server provides VRBO search capabilities by leveraging mcp-browser for browser automation. Unlike the Airbnb MCP which uses embedded JSON extraction, VRBO requires full browser rendering to access listing data.
Port: 3046 URL: https://mcp-vrbo.local.jbmurphy.com
Architecture
mcp-vrbo (3042) --> mcp-browser (3020) --> browser-pool --> LXC browsers
The server:
- Receives search/listing requests
- Calls mcp-browser to navigate to VRBO pages
- Executes JavaScript to extract listing data from the DOM
- Returns structured property information
Tools
| Tool | Description |
|---|---|
vrbo_search |
Search VRBO listings with filters (location, dates, guests, price range, bedrooms) |
vrbo_listing_details |
Get detailed information about a specific VRBO property |
Usage
Search for listings
curl -X POST https://mcp-vrbo.local.jbmurphy.com/mcp/call_tool \
-H "Content-Type: application/json" \
-d '{
"name": "vrbo_search",
"arguments": {
"location": "New York",
"checkin": "2025-03-01",
"checkout": "2025-03-05",
"adults": 2,
"min_bedrooms": 2
}
}'
Get listing details
curl -X POST https://mcp-vrbo.local.jbmurphy.com/mcp/call_tool \
-H "Content-Type: application/json" \
-d '{
"name": "vrbo_listing_details",
"arguments": {
"id": "4515867"
}
}'
Search Parameters
| Parameter | Type | Description |
|---|---|---|
location |
string | Required. City, state, or region to search |
checkin |
string | Check-in date (YYYY-MM-DD) |
checkout |
string | Check-out date (YYYY-MM-DD) |
adults |
number | Number of adults (default: 2) |
children |
number | Number of children (default: 0) |
min_bedrooms |
number | Minimum number of bedrooms |
min_bathrooms |
number | Minimum number of bathrooms |
min_price |
number | Minimum price per night |
max_price |
number | Maximum price per night |
Response Format
{
"searchUrl": "https://www.vrbo.com/search?destination=...",
"location": "New York",
"totalAvailable": "300+",
"returnedCount": 17,
"properties": [
{
"id": "4515867",
"name": "Spacious apartment in Brooklyn",
"url": "https://www.vrbo.com/4515867",
"price": "$1,181",
"priceNumeric": 1181,
"rating": 9.4,
"reviews": 10,
"propertyType": "Apartment",
"sleeps": 16,
"bedrooms": 4,
"bathrooms": "3+",
"neighborhood": "Brooklyn"
}
]
}
Dependencies
mcp-browser- Browser automation service (must be running)browser-pool- LXC browser container pool
Build & Deploy
# Build locally
docker-compose up -d --build
# Or via main docker-compose
cd .. && docker-compose up -d --build mcp-vrbo
Technical Notes
- VRBO uses React and loads data dynamically via GraphQL
- Data extraction is done by parsing the rendered DOM, not embedded JSON
- The browser pool handles anti-bot measures through real browser instances
- Slower than Airbnb scraping (~3-5 seconds per search) due to full page rendering
Comparison: Airbnb vs VRBO
| Aspect | mcp-airbnb | mcp-vrbo |
|---|---|---|
| Method | Embedded JSON extraction | DOM parsing via browser |
| Speed | Fast (~1 second) | Slower (~3-5 seconds) |
| Browser required | No | Yes (via mcp-browser) |
| Reliability | May break on JSON structure changes | May break on DOM changes |
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.