Letting Your AI Agent Book Travel: Composing Travala's Travel MCP with FurlPay Payments
By FurlPay Engineering · July 4, 2026 · 5 min read
In June 2026, Travala launched its Agentic AI Travel Protocol, introducing a remote Model Context Protocol (MCP) server accessible at https://travel-mcp.travala.com/mcp. This allows autonomous AI agents to search and reserve from over 2.2 million properties globally. However, search and selection are only half the battle. To complete the loop, the agent needs a secure payment mechanism that respects spending limits and doesn't require sharing raw API keys or card numbers.
By composing Travala's Travel MCP with FurlPay's payment rails, developers can build agents that book travel autonomously. FurlPay acts as the payment and financial orchestration layer, allowing agents to request single-use payment authorizations using the x402 open standard on Base and Solana.
The Agentic Travel Flow
[ AI Agent ] ──> Searches inventory via Travala Travel MCP (travel-mcp.travala.com/mcp)
│
├──> Requests budget clearance from FurlPay wallet (ERC-7715 session keys)
│
└──> Signs & settles gasless USDC transaction via x402 on Base L2Composing the MCP Tools
Using FurlPay's client SDK, developers can implement an agent tool that handles the budget authorization and payment settlement. This allows the AI agent to verify that the booking quote matches the user's spending policies before executing the transaction.
import { FurlPayClient } from "@furlpay/furlpay-node";
// Verify booking quote and generate on-chain x402 payment proof
const client = new FurlPayClient({ apiKey: process.env.FURLPAY_SECRET_KEY });
const quote = await client.travel.verifyQuote({
quoteId: "trvl_quote_9821379",
amount: 180.00,
currency: "USDC"
});
if (quote.isValid && quote.amount <= maxBudgetLimit) {
const paymentProof = await client.x402.createProof({
amount: quote.amount,
token: "USDC",
destination: "travala_facilitator"
});
console.log("Booking authorized. Transaction hash:", paymentProof.txHash);
}In the agentic web, search is performed by the machine, but authorization must remain anchored to the human. Composing the inventory provider with the payment gateway is the ultimate friction reducer for travel.
Furthermore, developers who integrate these tools can capture Travala's 10% cbBTC (Coinbase Wrapped Bitcoin) rebate. FurlPay automatically routes these rebates back to the developer's wallet, creating a sustainable monetization channel for autonomous agents.
FurlPay Engineering
Furlpay
Written by the Furlpay team — engineers and compliance specialists building an on-chain financial operating system for stablecoin payments, travel, and investing on Arbitrum.
Don't miss the next one
Stay ahead of the curve
Get product updates, engineering deep-dives, and security bulletins. No spam — just the signal.
More in Travel
Trip.com Now Takes Stablecoins — What It Signals for Travel Payments in 2026
Trip.com added USDT/USDC checkout in 2026, joining Travala, Wego and Meta's creator payouts in a broad shift to stablecoin money movement. Here is what changed, why it matters, and where Furlpay fits — USDC-native settlement, agentic booking, and a single-use Visa card for merchants that still take fiat only.
July 7, 2026 · 7 min read
Dubai Cashless 2026: How Hotels Can Accept Crypto Payments
Dubai is targeting a largely cashless economy, Emirates and Dubai Duty Free are enabling crypto, and Palazzo Versace already accepts it. Here is how any Dubai hotel can accept USDC at 0.5% — and the honest regulatory picture.
July 6, 2026 · 7 min read
The 2026 Travel Super-App Race Will Be Decided at the Payment Step
Online travel is a $719B market racing toward $1.3T, and Booking, Airbnb and Trip.com are all rebuilding as super-apps. But the layer none of them own — money movement — is where the race gets decided.
July 5, 2026 · 9 min read