RollingGo Hotel Booking AI MCP Server
An MCP (Model Context Protocol) server for interacting with the RollingGo Hotel Global API. This server enables Claude and other MCP clients to search for hotels, retrieve hotel details, and fetch search tags globally.
Setup
This server requires an API key for the RollingGo Hotel service.
You must set the ROLLINGGO_API_KEY (or DIDA_API_KEY) environment variable when running the server.
Usage
Using npx
ROLLINGGO_API_KEY=your_api_key_here npx -y hotelbooking-ai
Claude Desktop Configuration
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"hotelbooking-ai": {
"command": "npx",
"args": ["-y", "hotelbooking-ai"],
"env": {
"ROLLINGGO_API_KEY": "your_api_key_here"
}
}
}
}
Cursor Configuration
In Cursor MCP settings, add:
- Type:
command
- Command:
npx -y hotelbooking-ai
- Add an environment variable
ROLLINGGO_API_KEY with your key.
Tools Provided
searchHotels: Search for hotels based on location, dates, and filters.
getHotelDetail: Retrieve detailed information for a specific hotel.
getHotelSearchTags: Get search tags for hotel filtering.