Booking.com stays by destination and dates, and full property details, as structured JSON.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A hosted Model Context Protocol (MCP) server that gives Claude, Cursor, Windsurf and any other MCP client two read-only Booking.com tools. Search stays by destination and dates with rich filters, and read a single property in full, all as structured JSON, with no Booking.com account and nothing to host.
It reads public property pages on Booking.com that a signed-out visitor can see.
An MCP client and a HasData API key from the dashboard, free to create with no card, and the trial covers 100 calls at the 10-credit rate. This is a remote server, so the simplest path is a URL and an x-api-key header, with no container to run and no Booking.com account anywhere in the flow. A client that only speaks stdio reaches it through a thin launcher, published as @hasdata/booking-mcp on npm and hasdata-booking-mcp on PyPI, shown below.
The server URL is the same for every client. We run it hands-on in Claude Code and Claude Desktop. The other blocks follow each client's own documented format for a remote server.
| Field | Value |
|---|---|
| URL | https://mcp.hasdata.com/api/mcp?apis=booking |
| Transport | HTTP, streamable |
| Auth header | x-api-key: HASDATA_API_KEY |
Clients with OAuth support can add the same URL as a connector and sign in without putting a key in a config file.
Settings, then Connectors, then Add custom connector, then paste https://mcp.hasdata.com/api/mcp?apis=booking and sign in.
For the config-file route, Claude Desktop loads only local (stdio) servers, so it reaches a remote server through a stdio launcher. The @hasdata/booking-mcp package is that launcher, and it reads the key from the environment. Add this to claude_desktop_config.json:
For Python instead of Node, swap the launcher for the PyPI package, which uvx runs without a manual install:
~/.cursor/mcp.json for every project, or .cursor/mcp.json for one:
~/.codeium/windsurf/mcp_config.json. Windsurf calls the field serverUrl, not url:
.vscode/mcp.json in the workspace:
Prompts, not code. Paste one in and the agent picks the tool itself. Each is annotated with the calls it takes, because every successful call costs 10 credits.
Search Booking.com for hotels in Paris from September 15 to 18 for two adults, and give me the ten best-reviewed under $700 for the stay.
One call, 10 credits. Price, review score and location come back on the search result.
Take the top result and pull its full detail: facilities, house rules, the room options, and the category ratings.
One call, 10 credits. Those live on the property page, which the details tool reads by URL and dates.
Find four-star hotels in Paris with free cancellation near the center, and list price and review score.
One call, 10 credits. Star rating, cancellation policy and distance are filters on the one request.
Compare the cheapest stay in Paris against Rome for the same dates.
Two calls, 20 credits, one search per city.
The property tool needs the same dates and guest counts as the search, because availability and price depend on the window. A search to shortlist plus a detail call on three properties is one search and three property calls.
Two tools, read-only. Samples below are trimmed from real calls, and prices move constantly. Read them as shapes. Each tool name links to its endpoint reference, which carries the full field list.
The samples are the payload, not the whole response. A tools/call result carries one text block, and that text is itself JSON holding url, status, text and json, with the scraped data under json. From a raw JSON-RPC response the path is result.content[0].text, parsed, then .json. A chat client unwraps that for you and code talking to the endpoint directly does not.
hasdata_booking_search_getBookingSearchResults
A page of stays by destination and dates.
| Parameter | Type | Required | Notes |
|---|---|---|---|
keyword | string | yes | Destination, such as Paris or a specific property name |
checkInDate / checkOutDate | string | yes | YYYY-MM-DD, check-in in the future and before check-out |
rooms / adults / children | number | yes | Guest composition. Pass children: 0 when there are none |
childrenAges | string | Comma-separated ages, required when children > 0 | |
sort | string | priceLowestFirst, ratingHighToLow, bestReviewedAndLowestPrice, distanceFromDowntown and more | |
propertyType__ / rating__ / reviewScore__ | array | Property type, star rating, and guest-score buckets | |
facilities__ / roomFacilities__ / reservationPolicy__ | array | Facility, in-room and cancellation filters | |
price_min_ / price_max_ | number | Total-stay price band | |
page | number | About 25 results per page, 2 for the next page |
The reference documents the full filter set, including distance, meals, accessibility, bed preference and travel group.
Returns searchInformation, a results array, and pagination with page, totalResults and totalPages. Each result carries hotelId, title, url, the offered room and bedTypes, a location object, a policies object, a price object, the star rating, a reviews object with score, count and a text label, and a photo.
The discount field in
priceis spelleddicsount(dicsountRawanddicsountParsed), which mirrors the upstream key. Read that spelling, notdiscount. Also noteratingis the official star rating whilereviews.scoreis the guest score out of 10, two different numbers.
hasdata_booking_place_getBookingPlaceDetails
One property in full, by its URL and the stay window.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/hasdata-booking-com)<a href="https://allmcps.com/mcp/hasdata-booking-com"><img src="https://allmcps.com/api/badge/hasdata-booking-com?style=directory" alt="HasData Booking.com on AllMCPs" /></a>