streamable-httpupdated 12d ago
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.
What can you do with Hotel Booking AI MCP?
Hotel Booking AI MCP Product Package
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.
Package contents
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.mddefines the public MCP connection and capability contract.
MCP connection
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.
Product model
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.
Skill version and updates
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.
Development handoff
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.
TourMind hotel booking ecosystem
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 |
Install
Add Hotel Booking AI MCP to your client. Pick the one you use.
claude mcp add --transport http hotel-booking-ai-mcp https://api.tourmind.com/mcp/toccodex mcp add hotel-booking-ai-mcp --url https://api.tourmind.com/mcp/toc{
"mcpServers": {
"hotel-booking-ai-mcp": {
"url": "https://api.tourmind.com/mcp/toc"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"hotel-booking-ai-mcp": {
"type": "http",
"url": "https://api.tourmind.com/mcp/toc"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"hotel-booking-ai-mcp": {
"url": "https://api.tourmind.com/mcp/toc"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"hotel-booking-ai-mcp": {
"serverUrl": "https://api.tourmind.com/mcp/toc"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust9/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 5 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint ā no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Aug 7, 2026 |