loading…
Search for a command to run...
loading…
RollingGo MCP is a high-performance hotel search and recommendation service built on the MCP (Model Context Protocol) standard. It connects large language model
RollingGo MCP is a high-performance hotel search and recommendation service built on the MCP (Model Context Protocol) standard. It connects large language models with a massive database of domestic and international hotel data, providing real-time structured hotel search capabilities for AI assistants, agents, travel planning tools, or IDE plugins like Cursor/Windsurf.
Version ModelScope Calls License: MIT Python 3.8+
🏠 官网 · 🚀 快速开始 · 📚 使用示例 · 💬 技术支持📚 接入教程-视频版(0基础0代码可实操) 📚 接入教程-文档版
RollingGo Hotel MCP为 AI Agent 和 MCP 客户端提供酒店预订能力,它适合希望在 AI 产品中接入酒店交易能力的开发者、Agent 构建者、旅游产品团队和企业差旅场景,企业和个人均可完全免费一键接入,无调用量限制。
🔍 按需求智能筛选和比价,省心挑酒店
📋 实时查房型、报价和退改规则,明明白白不踩坑
🛏️ 心仪房型提前锁定,不用愁晚订没房
💳 说句“下单”就实时确认库存和价格直接付
📑 订单状态随时能查,全程都省心
💴 还能设置24 小时自动盯价,降价马上提醒
| 服务 | 端点 | 已上线 Tool | 认证 |
|---|---|---|---|
| 酒店 MCP | https://mcp.rollinggo.cn/mcp |
searchHotels, getHotelDetail, getHotelSearchTags | Authorization: Bearer <YOUR_API_KEY> |
| 机票 MCP | https://mcp.rollinggo.cn/mcp/flight |
searchAirports, searchFlights | Authorization: Bearer <YOUR_API_KEY> |
💡 总结来说,你只需要做两件事:申请API Key+ 在AI助手中一键配置,无需编写代码,就能让任何支持MCP的AI助手具备酒店搜索能力,5 分钟内完成第一次 MCP Tool 调用
推荐 Claude CLI、Codex、Cursor 三个客户端。其他支持 MCP 的客户端(如 Kiro、豆包等)配置方式类似。
在项目根目录创建 .mcp.json:
{
"mcpServers": {
"RollingGo-Hotel": {
"url": "https://mcp.rollinggo.cn/mcp",
"type": "http",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
},
"RollingGo-Flight": {
"url": "https://mcp.rollinggo.cn/mcp/flight",
"type": "http",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
也可以通过命令行直接添加:
claude mcp add \
--transport http \
--header "Authorization: Bearer YOUR_API_KEY" \
RollingGo-Hotel \
https://mcp.rollinggo.cn/mcp
claude mcp add \
--transport http \
--header "Authorization: Bearer YOUR_API_KEY" \
RollingGo-Flight \
https://mcp.rollinggo.cn/mcp/flight
配置文件位置:项目根目录 .codex/config.json 或全局 ~/.codex/config.json
{
"mcpServers": {
"RollingGo-Hotel": {
"url": "https://mcp.rollinggo.cn/mcp",
"type": "streamable-http",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
},
"RollingGo-Flight": {
"url": "https://mcp.rollinggo.cn/mcp/flight",
"type": "streamable-http",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
配置文件位置:项目根目录 .cursor/mcp.json 或全局 ~/.cursor/mcp.json
{
"mcpServers": {
"RollingGo-Hotel": {
"url": "https://mcp.rollinggo.cn/mcp",
"type": "streamable-http",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
},
"RollingGo-Flight": {
"url": "https://mcp.rollinggo.cn/mcp/flight",
"type": "streamable-http",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
将
YOUR_API_KEY替换为你收到的实际 API Key。酒店和机票使用相同的认证方式,区别仅在于 URL(/mcpvs/mcp/flight)。
注意:cURL 必须带
-H "Accept: application/json, text/event-stream"头,否则服务端返回 400。
curl -X POST https://mcp.rollinggo.cn/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "searchHotels",
"arguments": {
"originQuery": "上海外滩五星酒店",
"place": "上海外滩",
"placeType": "景点",
"checkInParam": {
"checkInDate": "2026-06-01",
"stayNights": 2
},
"filterOptions": {
"starRatings": [5.0]
},
"size": 3
}
},
"id": 1
}'
配置完成后,对你的 AI 助手说:
"帮我搜一下上海外滩附近后天入住的五星酒店"
AI 会自动调用 searchHotels Tool,返回酒店列表。
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "searchHotels",
"arguments": {
"originQuery": "上海外滩五星酒店",
"place": "上海外滩",
"placeType": "景点",
"checkInParam": {
"checkInDate": "2026-06-01",
"stayNights": 2
},
"filterOptions": {
"starRatings": [5.0]
},
"size": 3
}
},
"id": 1
}
"帮我监控杭州西溪湿地附近这家酒店"
"帮我看看未来三天内,杭州有哪些4星以上的酒店推荐?"

"2026年七夕节,想在香港迪士尼附近找个性价比高的酒店"

| 功能 | 说明 |
|---|---|
| 🏙️ 多地点搜索 | 支持城市、景点、机场、火车站、地铁站等 |
| 📅 日期筛选 | 指定入住日期和住宿天数 |
| ⭐ 星级过滤 | 支持0-5星筛选,精确到0.5星梯度 |
| 📍 距离搜索 | 以景点为中心,限定半径范围(米) |
| 🛏️ 设施详情 | 可选返回酒店设施、房间设施信息 |
| 🌐 多语言 | 支持中文、英文等语言环境 |
| 参数 | 必填 | 说明 | 示例 |
|---|---|---|---|
| place | ✅ | 搜索地点 | 杭州、迪士尼 |
| placeType | ✅ | 地点类型 | 城市、景点、机场、地铁站、区/县... |
| originQuery | ✅ | 你的原始需求描述 | 帮我找酒店 |
| checkIn | ❌ | 入住日期(yyyy-MM-dd) | 2026-05-01 |
| stayNights | ❌ | 住宿天数 | 2 |
| starRatings | ❌ | 星级范围 | [4, 5] 表示4-5星 |
| size | ❌ | 返回数量(默认10),最大20 | 5 |
注意:
- 实际字段以接口数据返回为准,上述示例仅展示部分字段。
- 随着后端能力演进,字段可能会新增或调整,MCP 客户端侧建议按"有则使用、无则忽略"的方式做兼容。
A: 目前支持以下平台:
A: 默认返回酒店名称、星级、价格、地址、预订链接,酒店图片、酒店设施等。(具体可参考实际返回数据)
A: 目前阶段免费使用。
| 环境 | 认证方式 | Header |
|---|---|---|
| 远程(云端) | Bearer Token | \Authorization: Bearer YOUR_API_KEY\ |
| 本地服务 | Secret Key | \X-Secret-Key: YOUR_API_KEY\ |
感谢每一位开发者的交流、分享与反馈,让RollingGO的迭代更高效。
加入微信群,核心开发团队会全程在线,协助搞定环境配置、接口调试,一起跑通第一个成功的酒店预订调用,零障碍快速上线。

你可以在群内获得:
Made with ❤️ by RollingGo Team
Run in your terminal:
claude mcp add rollinggo-hotel-mcp -- npx Yes, RollingGo Hotel MCP is free — one-click install via Unyly at no cost.
No, RollingGo Hotel runs without API keys or environment variables.
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
Open RollingGo Hotel on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
CSA PROJECT - FZCO © 2026 IFZA Business Park, DDP, Premises Number 31174 - 001
Security
Low riskAutomated heuristic from public metadata — not a security guarantee.