RollingGo-Hotel-MCP

by rollinggo-ai

Not rated
GitHub

About

A high-performance hotel search and booking service built on the MCPstandard.

Details

Author
rollinggo-ai
Categories
Search, Knowledge Base, Other

Setup

Install RollingGo-Hotel-MCP in your MCP client (Claude Desktop, Cursor, Windsurf, and others).

Repository: https://github.com/rollinggo-ai/rollinggo-hotel-mcp

Follow the installation instructions in the repository README, then restart your MCP client.

RollingGo — Hotel Search & Booking MCP

🏠官网· 🚀快速开始· 📚使用示例· 💬技术支持📚接入教程-视频版(0基础0代码可实操)📚接入教程-文档版

RollingGo Hotel MCP为 AI Agent 和 MCP 客户端提供酒店预订能力,它适合希望在 AI 产品中接入酒店交易能力的开发者、Agent 构建者、旅游产品团队和企业差旅场景,企业和个人均可完全免费一键接入,无调用量限制。

- ✅实时库存价确- 库存直连+实时价格确认能力,信息零延迟,查询结果均可直接预订
- ✅成熟供应链保障- 全球第三大酒旅B2B官方数据源,14年旅行产品供应链积累,全链路API直连
- ✅海量酒店覆盖- 坐拥200万+酒店资源,覆盖全球主要目的地
- ✅直签酒店资源- 11万+直签酒店直连,价格库存实时响应,确保查询结果准确可订
- ✅多元供应体系- 整合500+全球供应商,涵盖各类酒店品牌,满足不同用户预订需求
- ✅差异化价格优势- 锚定OTA上游供应,海外酒店及上海、香港、日韩等热门目的地价格优势显著
- ✅兼容性- 支持 Cursor、Claude Code、Codex、Windsurf、Copilot 等 40 多种主流大模型代理,针对ClawHub/扣子/Qclaw等Agent 平台,还提供
Rollinggo全能订机票酒店Skill。

- 正在开发 AI Agent 的团队或个人开发者
- 想在 MCP Client 中接入酒店预订能力的开发者
- 正在构建旅行规划、差旅管理、OTA、生活服务类智能体的开发者
- 希望验证 AI Agent 商业交易闭环的产品团队
- 有酒店查询、酒店比价、盯价提醒需求的个人用户

- 通用 AI Agent:让你的大模型 Agent 直接拥有原生酒店预订能力,用户在自然对话中即可完成从需求理解、智能推荐、比价筛选到订单创建的全流程
- AI 旅行助手:根据用户目的地、日期、预算和个性化偏好精准推荐酒店,支持多维度需求匹配
- 行程规划工具:把酒店搜索和预订能力无缝嵌入对话式行程规划流程,实现 "规划即预订" 的一体化体验
- MCP / Agent Demo:快速验证 "AI Agent 直接完成酒店交易" 的产品能力,打造可演示的完整闭环

- 支持城市名称、热门景点、交通枢纽、酒店名称、具体地址等 6 种目标地点类型精准搜索
- 提供灵活的星级筛选、入住日期设置、住宿天数配置、价格区间过滤等专业筛选功能
- 基于用户个人偏好提供个性化推荐,生成高性价比、好评热门、人气精选等多维度专业榜单
- 全程自然语言交互,智能完成从地点解析、筛选比价、个性化推荐到订单生成的完整闭环

💡 总结来说,你只需要做两件事:申请API Key+ 在AI助手中一键配置,无需编写代码,就能让任何支持MCP的AI助手具备酒店搜索能力,5 分钟内完成第一次 MCP Tool 调用
-
点击申请
- 填写基本信息,0等待,申领即得。
- 为什么需要填写信息申请 KEY?酒店价格、库存和订单能力涉及真实交易链路,因此我们需要为每个开发者开通专属的独立KEY。申请 KEY 时仅需填写少量信息,这样做主要是为了减少无效配置成本,保护接口稳定性,避免恶意调用或异常流量,在测试订单、价格查询、库存校验等问题上能及时联系到你。

推荐 Claude CLI、Codex、Cursor 三个客户端。其他支持 MCP 的客户端(如 Kiro、豆包等)配置方式类似。

{ "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 }'
{ "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 }

- 实际字段以接口数据返回为准,上述示例仅展示部分字段。
- 随着后端能力演进,字段可能会新增或调整,MCP 客户端侧建议按"有则使用、无则忽略"的方式做兼容。

- Cursor
- Windsurf
- Antigravity
- Claude Desktop
- Cherry studio等其他支持MCP协议的客户端

A:默认返回酒店名称、星级、价格、地址、预订链接,酒店图片、酒店设施等。(具体可参考实际返回数据)

- API Key请妥善保管,不要硬编码在代码中
- 生产环境建议使用环境变量管理
- 公网访问请使用HTTPS协议

加入微信群,核心开发团队会全程在线,协助搞定环境配置、接口调试,一起跑通第一个成功的酒店预订调用,零障碍快速上线。

- ✅ 接入配置指导
- ✅ API / MCP 调用问题排查
- ✅ 酒店搜索、价格、预订流程说明
- ✅ 适合你业务场景的集成建议

Search global news using natural language. Webz.io News Search API returns the most relevant articles and content, with filters for source, country, language, date, sentiment, and category.

Fetch, convert, and search AWS documentation pages, with recommendations for related content.

Search campgrounds around the world on campertunity, check availability, and provide booking links.

The Ferryhopper MCP Server exposes ferry routes, schedules and booking redirects so an AI assistant can discover connections across Europe and the Mediterranean and send users to Ferryhopper to complete bookings.

All-in-One SEO & Web Intelligence Toolkit API from FetchSERP.

MCP server that provides read-only access to HyperKitty, the web-based email archive component of Mailman 3.

At Sunrise Apps, we believe AI agents should be limitless, especially when it comes to visual data. We created ImageSorcery to bridge the critical gap in AI's ability to interact with and manipulate images directly, all while upholding the highest standards of privacy and security.

Just Domain is the domain registrar for businesses built with AI. Its remote MCP server checks availability and returns first-year and renewal pricing, plus a link to register on justdomain.ai, with DNS and WHOIS privacy in the same place. No account, no API key, read only. Endpoint: https://mcp.justdomain.ai/

Research tools, including a Sqlite-backed document stash

Semantic search over 9 free-license stock photo sources. Hosted remote server with OAuth — no API key to paste.

SerpApi MCP Server for Google and other search engine results

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.