streamable-httpupdated 12d ago
This folder contains the product definition and the user-installable companion Skill for TourMind Booking MCP. It intentionally does not contain MCP server source code, deployment scripts, or runtime-specific implementation.
What can you do with TourMind Booking MCP?
TourMind Booking MCP Product Package
This folder contains the product definition and the user-installable companion Skill for TourMind Booking MCP. It intentionally does not contain MCP server source code, deployment scripts, or runtime-specific implementation.
Package contents
Tourmind-Booking-Mcp/
āāā README.md
āāā TourMind MCP-FORMAT.md
āāā skill/
āāā tourmind-booking/
āāā SKILL.md
āāā references/
āāā parameter_guide.md
skill/tourmind-booking/is distributed to users and defines the Agent's hotel-search, price-query, booking, payment, and update behavior.TourMind MCP-FORMAT.mddefines the user-facing MCP connection example and the capability contract for the development team.
Product model
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:
# TourMind Booking Skill
**Skill version:** `<current-version>`
The Agent sends this version as current_version only when calling the dedicated check_skill_update tool. Hotel search, rate, booking, order, cancellation, and payment tools do not carry a Skill version. Users do not maintain a Skill version in the MCP connection configuration.
Authentication setup
Sign in to your TourMind account, then visit Create a Skill Token to create the token used by the MCP connection.
If you do not have an account, register for a business account at Business account registration. Developers and individual users should use the TourMind Skill version intended for their user type instead.
Configure the token as the MCP connection's Bearer credential and reconnect. Never paste the token into a conversation or expose it in prompts, logs, screenshots, commits, or issue reports.
User update experience
The Agent calls check_skill_update once when the Skill is first used in every new conversation, and again when an existing conversation resumes after at least 24 hours of inactivity. When that tool returns a visible skill_update:
- Complete the user's current hotel request first.
- Show the release message and explain that updating is recommended for TourMind's latest hotel-search and price-query strategy because older endpoints may become unavailable.
- Offer to update from the official sources listed by
release_source_url. - Obtain confirmation before changing local Skill files.
- Update the Skill and its version declaration together.
- Validate that the installed version matches
latest_version. - Use the new version in the next scheduled update check without asking the user to edit the MCP connection.
Development handoff
The server implementation only needs to satisfy the product contract in TourMind MCP-FORMAT.md. Transport framework, hosting, deployment, internal forwarding, and release infrastructure are development decisions and 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 TourMind Booking MCP to your client. Pick the one you use.
claude mcp add --transport http tourmind-booking-mcp https://api.tourmind.com/mcp/tobcodex mcp add tourmind-booking-mcp --url https://api.tourmind.com/mcp/tob{
"mcpServers": {
"tourmind-booking-mcp": {
"url": "https://api.tourmind.com/mcp/tob"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"tourmind-booking-mcp": {
"type": "http",
"url": "https://api.tourmind.com/mcp/tob"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"tourmind-booking-mcp": {
"url": "https://api.tourmind.com/mcp/tob"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"tourmind-booking-mcp": {
"serverUrl": "https://api.tourmind.com/mcp/tob"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/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 |