booking-com15

booking-com15

3.5

The Booking COM15 MCP Server provides a comprehensive solution for accessing real-time travel-related data, enabling seamless integration of hotel, flight, rental car, taxi, and attraction data.

The Booking COM15 MCP Server offers a robust API that enables users to search and retrieve real-time information about various travel services, including hotels, flights, car rentals, taxis, and attractions. By leveraging this server, you can build a travel platform similar to popular ones in the market, offering users a comprehensive travel planning experience.

Features

  • Meta Tools: Retrieve supported languages, currencies, exchange rates, convert addresses to coordinates, and test API status.
  • Hotels Tools: Search hotels by destination, check room availability, get hotel reviews, discover nearby cities, and locate attractions near hotels.
  • Flights Tools: Find airports by location, explore available flights, retrieve minimum flight prices, and access seating arrangements.
  • Car Rental Tools: Find car rental locations, view vehicle details, and check supplier ratings.
  • Taxi Tools: Locate taxi services by area and find taxi options for specific routes.

MCP Tools

  • Get Languages: Retrieve the list of supported languages.
  • Get Currency: Get a list of available currencies.
  • Get Exchange Rates: Obtain exchange rates for all currencies.
  • Location to Lat Long: Convert addresses to latitude and longitude coordinates.
  • Test API: Verify server status and operational capability.

Usage with Different Platforms

python

python
import requests

url = 'https://api.booking-com15.com/hotels/search'
params = {
    'destination': 'New York',
    'check_in': '2023-12-01',
    'check_out': '2023-12-05',
    'adults': 2
}
response = requests.get(url, params=params)
print(response.json())

javascript

javascript
fetch('https://api.booking-com15.com/hotels/search?destination=New%20York&check_in=2023-12-01&check_out=2023-12-05&adults=2')
  .then(response => response.json())
  .then(data => console.log(data));