- Home
- MCP servers
- Hotel Booking
Hotel Booking
- typescript
1
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"dumycq-jinko-mcp": {
"command": "npx",
"args": [
"jinko-mcp-dev@latest"
]
}
}
}You have access to a hotel booking MCP server that provides place discovery, hotel search, detailed hotel data, and booking capabilities through the MCP protocol. It’s designed to be integrated with MCP clients to deliver hotel availability and a seamless checkout experience for users.
How to use
You connect to the MCP server using an MCP client that supports stdio transport. Run the MCP server locally with your preferred method, then issue the standard MCP actions in sequence to locate places, filter hotels by facilities, view hotel details, and start bookings.
How to install
Prerequisites: Node.js and npm should be installed on your machine. You can verify by running node -v and npm -v.
Install the MCP development tool globally or run it directly with npx.
Install the MCP server client runtime and start the server with the following configuration snippet.
{
"mcpServers": {
"jinko_travel": {
"command": "npx",
"args": [
"jinko-mcp-dev@latest"
]
}
}
}
Additional notes
The server runs via stdio transport, so it can be used directly with MCP clients that support this transport type.
If you want to start using the production environment and earn commissions on bookings, contact the provider via the official website to gain access.
Available tools
find-place
Convert a user’s location query into standardized place information with coordinates to enable location-based hotel searches.
search-hotels
Search for available hotels using location coordinates and booking requirements; returns a paginated list with key details and rates.
load-more-hotels
Continue a previous hotel search session to retrieve additional results beyond the initial page.
get-hotel-details
Fetch comprehensive information for a specific hotel, including descriptions, rooms, rates, and policies.
book-hotel
Create a booking quote for a selected hotel and rate option and return a payment link to complete the purchase.
get-facilities
Retrieve hotel facilities in the requested language to help filter hotel searches by amenities.