bookingtruth
OfficialProvides booking assurance for Expedia itineraries by parsing OTA confirmation emails and reconciling the booking state to verify whether a reservation is actually confirmed.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bookingtruthVerify this United confirmation email is actually ticketed."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
BookingTruth
Is that booking actually real? BookingTruth is a booking-assurance API and MCP server for AI agents. Feed it booking confirmation emails and receipts; it reconciles contradictions across supplier records and returns a verdict - confirmed, held, pending, cancelled, or an honest unknown - each with a citable proof packet.
The core rule: CONFIRMED is returned only on supplier-authoritative evidence (tier 5-6: an authenticated supplier lookup, or a supplier-issued receipt carrying an issuance artifact such as an eTicket number). Everything below that bar returns a safe UNKNOWN with an indicated_state - never an LLM guess. An OTA "you're all set!" email is not ticketing. "We're processing your request" is not ticketing. An issued 13-digit eTicket number is.
Live endpoint: https://api.bookingtruth.com - sandbox is free, no signup.
MCP tools
Tool | What it does |
| Parse booking/confirmation documents (emails, receipts) and return reconciled booking-state verdicts with citable proof packets. |
| List suppliers BookingTruth can currently parse or look up, with per-supplier status (seeded/planned). |
Related MCP server: Lemma Oracle MCP Server
Installation
Remote streamable-HTTP server - no install, no key for the sandbox.
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"bookingtruth": {
"type": "url",
"url": "https://api.bookingtruth.com/mcp"
}
}
}Cursor / other MCP clients: add a remote MCP server with URL https://api.bookingtruth.com/mcp.
Usage
Ask your agent things like:
"Here's the confirmation email United sent - is my flight actually ticketed?"
"Expedia says my rental car is confirmed. Verify it."
"I changed my flight and got three different emails. What's the real state of my booking?"
Or call the tool directly with raw document text:
{
"documents": [
{"filename": "united_eticket.txt", "content": "<raw email text>"}
]
}REST API
# free sample documents to try (synthetic demo fixtures)
curl https://api.bookingtruth.com/v1/demo/fixtures
curl https://api.bookingtruth.com/v1/demo/fixtures/united_eticket_QA7X2K.txt
# run a check (sandbox: any Bearer key starting with sb_)
curl -X POST https://api.bookingtruth.com/v1/check \
-H "Authorization: Bearer sb_demo" \
-H "Content-Type: application/json" \
-d '{"documents": [{"filename": "doc.txt", "content": "<raw email text>"}]}'Discovery:
https://api.bookingtruth.com/.well-known/booking-assurance.jsonOpenAPI 3.0:
https://api.bookingtruth.com/v1/openapi.yamlAgent-oriented docs:
https://api.bookingtruth.com/llms.txtVerdicts persist:
GET /v1/bookings/{id}andGET /v1/bookings/{id}/proof
Pricing
Sandbox: free, full round trip, demo fixtures included.
Paid: $0.05 per check, prepaid packs ($10 / $25 / $50 = 200 / 500 / 1,000 checks) via POST /v1/buy. Paid keys start with pk_; check remaining credit at GET /v1/balance.
Supplier coverage
Seeded today: United (confirmation + eTicket receipt parsing), Expedia (OTA itinerary), Disney (aggregate reservation emails). More suppliers planned - call supplier_coverage for the live matrix.
How it works
Parse - supplier-specific parsers extract typed claims (identity, status, party, money) from each document, each claim carrying an evidence tier (0-6).
Reconcile - claims are resolved into booking identities; contradictions (e.g. "processing" prose vs. an issued eTicket) are logged as first-class conflict records, rules R0-R5 decide the verdict.
Prove - every verdict ships with a proof packet: the claims, tiers, rule trace, and source hashes behind the decision. LLM output is tier 0 and can never decide a verdict.
See docs/ for ARCHITECTURE, API-SPEC, PARSER-FRAMEWORK, and PROOF-PACKET.
Repo layout
booking_assurance/- the Python package (stdlib only, Python 3.10+): parsers, reconciliation engine, proof packets, REST + MCP serversfixtures/- synthetic demo fixtures (no real data)tests/run_tests.py- 16 checks over the contradiction casesserver.json- MCP registry metadata (com.bookingtruth/bookingtruth)
Run the tests
python3 tests/run_tests.pyLicense
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Travel & commerce intelligence for AI agents: search, book & price-track hotels, events, retail.
Evidence-first trust verdicts for AI-agent services — query one before you transact.
Flight search & booking for AI agents. 400+ airlines, $20-50 cheaper than OTAs.
Book real hotel and resort stays from any AI agent: all-in pricing, hosted Stripe checkout, no key.
Related MCP Servers
AlicenseNot gradedqualityCmaintenanceEnables AI agents to search and book hotels globally with real-time pricing and inventory from over 2 million properties.82MIT- AlicenseNot gradedqualityAmaintenanceEnables AI agents to query cryptographically verified facts with zero-knowledge proofs, selective disclosure, and tamper-evident provenance.356 npm1Apache 2.0
- AlicenseNot gradedqualityFmaintenanceEnables verification of AI agent identity, authority, and integrity at transaction time, returning signed verdicts for allow, step-up, review, or block.MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to check trustworthiness before recommending URLs, products, or organizations, with fail-closed pass/fail verdicts and attested-only recommendations.MIT