@pullapi/booking-scraper-mcp
v1.0.0
Published
Booking.com MCP server — hotel search, property details & guest reviews. For Claude, Cursor & AI agents.
Downloads
107
Maintainers
Readme
Booking.com Scraper MCP Server
An MCP server that provides real-time Booking.com data — search hotels by location and dates, get property details, and read guest reviews — for use with Claude, Cursor, and other MCP-compatible AI tools.
Features
- Search Hotels — Search Booking.com for hotels and accommodations by location and dates
- Get Property — Get detailed hotel/property information from Booking.com
- Get Reviews — Get guest reviews for a Booking.com property
Tools
search_hotels
Search Booking.com for hotels and accommodations by location and dates
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| location | string | Yes | Destination city or area |
| checkin | string | Yes | Check-in date (YYYY-MM-DD) |
| checkout | string | Yes | Check-out date (YYYY-MM-DD) |
| adults | number | No | Number of adults (default: 2) |
| rooms | number | No | Number of rooms (default: 1) |
| page | number | No | Page number (default: 1) |
| currency | string | No | Currency code (default: USD) |
get_property
Get detailed hotel/property information from Booking.com
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| url | string | Yes | Booking.com property URL |
get_reviews
Get guest reviews for a Booking.com property
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| url | string | Yes | Booking.com property URL |
| page | number | No | Page number (default: 1) |
Configuration
Get your API key from RapidAPI.
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"booking": {
"command": "npx",
"args": ["-y", "@pullapi/booking-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}Usage with Cursor
Add to your Cursor MCP settings (.cursor/mcp.json):
{
"mcpServers": {
"booking": {
"command": "npx",
"args": ["-y", "@pullapi/booking-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}License
MIT
