Book real travel from any AI agent
MCP serverCommerce & financeBook real hotel and resort stays from any AI agent: all-in pricing, hosted Stripe checkout, no key.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use Book real travel from any AI agent
Install Book real travel from any AI agent
The server’s own address, for the clients that take one directly. Or connect ahel onceand every client you use reads it from one address, with the account kept on ahel rather than in each client’s config.
Claude Code
claude mcp add --transport http book-real-travel-from-any-ai-age 'https://mcp.tellandgo.com/mcp'Run it once in your project, then open /mcp to approve any sign-in the server asks for.
Claude Desktop
https://mcp.tellandgo.com/mcpAdd a custom connector in Settings, paste this address, and approve the sign-in.
Cursor
cursor://anysphere.cursor-deeplink/mcp/install?name=book-real-travel-from-any-ai-age&config=eyJ1cmwiOiJodHRwczovL21jcC50ZWxsYW5kZ28uY29tL21jcCJ9Open the link and Cursor adds the server at that address.
ChatGPT
https://mcp.tellandgo.com/mcpIn Settings, enable Developer mode, create an MCP app, and paste this address. Your plan and workspace must allow custom apps.
Codex
codex mcp add book-real-travel-from-any-ai-age --url 'https://mcp.tellandgo.com/mcp'Run it once, then sign in with codex mcp login book-real-travel-from-any-ai-age if the server asks for an account.
From the project's README
As published by tell-and-go/mcp in README.md.
No account · No API key · Same prices as our site · Payment on a hosted Stripe checkout your agent never touches
Tell & Go runs a public Model Context Protocol server. Connect any AI agent — Claude, ChatGPT, Cursor, Gemini CLI, Hermes, OpenClaw, or your own — and it can search live resort inventory, get exact all-in quotes, and start a real booking that completes on our secure checkout page.
[!IMPORTANT] This repository is documentation only. The server is hosted at
https://mcp.tellandgo.com/mcp— there is nothing to install or run.
Connect in 30 seconds
One endpoint works in every MCP client:
| Client | One-liner | |
|---|---|---|
| 🟣 | Claude Code | claude mcp add --transport http tellandgo https://mcp.tellandgo.com/mcp |
| 🌐 | Claude.ai / Desktop | Settings → Connectors → Add custom connector → https://mcp.tellandgo.com/mcp (leave auth empty) |
| 💬 | ChatGPT | Settings → Connectors → Add custom MCP → https://mcp.tellandgo.com/mcp |
| ⚡ | Cursor / VS Code / Windsurf / Gemini CLI | add an mcpServers entry (below) |
| 🧠 | Hermes | hermes mcp add tellandgo --url https://mcp.tellandgo.com/mcp |
| 🦅 | OpenClaw | add a remote HTTP MCP server → https://mcp.tellandgo.com/mcp |
Cursor / VS Code / Gemini CLI — add to your MCP config
(~/.cursor/mcp.json, VS Code MCP settings, etc.):
{
"mcpServers": {
"tellandgo": { "url": "https://mcp.tellandgo.com/mcp" }
}
}
Prefer a ready-made pack? skills/ has a drop-in agent skill
(tellandgo-travel.md) + per-client
SETUP.md.
Why this exists
Booking.com and Expedia built AI agents inside their own apps. We did the opposite: we opened our travel agency as a public MCP that works in every agent — before the big OTAs did.
| The question | The answer |
|---|---|
| Is it real? | Live inventory, real bookings, confirmation email. An all-in quote with transfers included — resort speedboat, seaplane, domestic flight, whatever the property requires — a single upfront number no OTA API surfaces in one line. |
| Is it safe? | Search & quote are read-only. Booking only returns a hosted Stripe checkout URL on tellandgo.com. The agent never sees card data. |
| What's the catch? | None. Website rates, no markup for agent users, no account, MIT-licensed docs. |
| Why not Booking's agent? | Theirs is a closed app inside one assistant. Ours works in every client that speaks MCP. |
Tools
| Tool | What it does |
|---|---|
search_stays | Natural-language search over bookable hotel & resort inventory; returns matches with all-in, transfer-inclusive nightly pricing. |
get_stay_details | Full detail for one property: rooms, amenities, location, policies, indicative pricing. |
get_quote | A live, dated quote for a specific stay + dates + guests — the exact all-in total, matching the website. |
prebook_stay | Locks the quoted rate with the supplier before payment; returns a prebook_id for start_booking. If the supplier price changed, re-call with the returned terms_digest to accept it. |
start_booking | Returns a hosted Stripe Checkout link (checkout.stripe.com) that the traveler opens to pay. The agent never handles card data. |
Typical flow: search_stays → get_stay_details → get_quote → prebook_stay → start_booking
The MCP transport speaks JSON-RPC 2.0 over streamable-HTTP.
Initialize the session
{
"jsonrpc": "2.0", "id": 1, "method": "initialize",
"params": {
"protocolVersion": "2025-06-18",
"capabilities": {},
"clientInfo": { "name": "my-agent", "version": "1.0.0" }
}
}
List available tools
{ "jsonrpc": "2.0", "id": 2, "method": "tools/list", "params": {} }
Search for stays
{
"jsonrpc": "2.0", "id": 3, "method": "tools/call",
"params": {
"name": "search_stays",
"arguments": {
"query": "overwater villa in the Maldives for a honeymoon in October, all-in with seaplane transfer",
"check_in": "2026-10-12", "check_out": "2026-10-19", "adults": 2
}
}
}
Follow up with get_quote for an exact dated total, then prebook_stay to
lock the rate, then start_booking to receive the hosted checkout link the
traveler completes.
# MCP handshake
curl -X POST https://mcp.tellandgo.com/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize"}'
# List tools
curl -X POST https://mcp.tellandgo.com/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/list"}'
What it can book
Curated, verified-bookable hotel & resort stays. The live set of destinations grows all the time — see the current coverage at tellandgo.com/en/destinations.
Each new market simply grows the catalog behind the same endpoint — your agent doesn't need to change anything.
Pricing
Free to connect. No account, no API key, no cost. Prices shown by the tools are identical to tellandgo.com — all-in (room + stated meal plan + resort/seaplane transfer where applicable). We never add fees or markups for agent users.
[!NOTE] Fair use: ~60 requests/minute per IP, a tighter budget on search/quote/booking, and a global ceiling. Excess traffic gets
429+Retry-After. Building a product on this? Reach out for higher throughput.
FAQ
Links
- 🌐 Landing page: https://tellandgo.com/mcp
- 📋 Discovery manifest: https://tellandgo.com/.well-known/mcp.json
- 🤖
llms.txt: https://tellandgo.com/llms.txt - 📖 Full inventory reference: https://tellandgo.com/llms-full.txt
- 📦 Registry manifest:
server.json·glama.json - 📝 Changelog:
CHANGELOG.md
Tell & Go · Made for agents, built for humans.
Documentation © 2026 Island Inventions, Inc. — released under the MIT License.
Advanced
- Delivery
- tellandgo-mcp MCP server → your ahel gateway (mcp.ahel.ai) → every connected AI client.
- Catalog kind
- mcp-server
- Gateway key
io-github-mzahir-tellandgo-mcp- Source
- github.com/tell-and-go/mcp
- Hosted endpoint
https://mcp.tellandgo.com/mcp