Consumer hotel search, live rates, booking, order management, and payment via TourMind.
MCPpedia last refreshed this data
io.github.tourmind-com/hotel-booking-ai-mcp is an MCP server that consumer hotel search, live rates, booking, order management, and payment via TourMind. Its tool list has not been published yet over http, requires no API key, and scores 39/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"tourmind": {
"url": "https://api.tourmind.com/mcp/toc",
"type": "streamableHttp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This repository contains the ToC product contract and the user-installable companion Skill for Hotel Booking AI MCP. It intentionally does not contain MCP server source code, deployment scripts, or runtime-specific implementation.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance / ecommerce
Девять российских маркетплейсов и китайский Taobao как MCP-серверы: Wildberries, Ozon, Яндекс Маркет, Детский мир, Авито, Мегамаркет, Lamoda, DNS, Ситилинк. Плюс сравнение цен по всем сразу. Только чтение, ключи не нужны.
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
HoneyBook client-portal MCP server for Claude — view contracts and invoices from wedding vendors
Self-custody Ethereum agent wallet (MCP/stdio). Keys stay in a local Docker volume.
MCP Security Weekly
Get CVE alerts and security updates for io.github.tourmind-com/hotel-booking-ai-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This repository contains the ToC product contract and the user-installable companion Skill for Hotel Booking AI MCP. It intentionally does not contain MCP server source code, deployment scripts, or runtime-specific implementation.
Hotel-Booking-AI-MCP/
├── README.md
├── Hotel Booking AI MCP-FORMAT.md
└── skill/
└── hotel-booking-ai/
├── SKILL.md
└── references/
└── parameter_guide.md
skill/hotel-booking-ai/ defines the Agent's hotel-search, live-rate, booking, payment, order-management, and update behavior.Hotel Booking AI MCP-FORMAT.md defines the public MCP connection and capability contract.Use the public production endpoint without connection headers:
{
"mcpServers": {
"tourmind": {
"url": "https://api.tourmind.com/mcp/toc",
"type": "streamableHttp"
}
}
}
The MCP connection itself is public. check_skill_update, hotel search, hotel detail, live rates, and availability checks require no user_key. Booking, order lookup, cancellation, and payment tools receive user_key from the companion Skill only when those protected actions are requested.
The ToC MCP and ToB MCP use the same hotel discovery, Google POI resolution, candidate verification, live-rate ranking, image, cancellation, tax, payment, and error-handling prompts wherever their product behavior is identical.
The ToC variant differs only where the product differs:
| Concern | ToC behavior |
|---|---|
| MCP endpoint | https://api.tourmind.com/mcp/toc |
| Connection authentication | Public connection; no headers |
| Discovery and availability | Public; no user_key required |
| Booking and order operations | Require user_key from user_key.txt |
Read-only web_url | Optional; an already stored user_key may be sent only with hotel search or room-rate queries |
The MCP service provides stable hotel tools. The local Skill defines the current user workflow and can evolve independently as search, ranking, price verification, booking, and display strategies improve.
The installed SKILL.md is the single source of truth for the Skill version:
# Hotel Booking AI Skill (ToC MCP)
**Skill version:** `<current-version>`
The Agent sends this version only to check_skill_update when an update check is due. Business tools never receive a Skill version, and users never maintain it in the MCP connection configuration.
The server implementation must satisfy Hotel Booking AI MCP-FORMAT.md, including all ten tools referenced by the companion Skill. Transport framework, hosting, deployment, internal forwarding, and release infrastructure are outside this package.
Choose the package that matches the audience and connection model:
| Audience | Integration | Authentication model | Repository |
|---|---|---|---|
| Consumer / ToC | Direct HTTP Skill | Public search and availability; user_key only for order operations | Hotel Booking AI |
| Business / ToB | Direct HTTP Skill | Skill Token required for every API call | TourMind Booking Skill |
| Consumer / ToC | MCP package + companion Skill | Public MCP connection; user_key only for order operations | Hotel Booking AI MCP |
| Business / ToB | MCP package + companion Skill | Bearer-authenticated MCP connection | TourMind Booking MCP |