Book real travel from your agent — flights, hotels & activities behind a price-gated checkout.
MCPpedia last refreshed this data
com.voyagier/cli is an MCP server that book real travel from your agent — flights, hotels & activities behind a price-gated checkout. Its tool list has not been published yet over stdio and http, requires no API key, and scores 61/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"voyagier": {
"env": {
"VOYAGIER_TOKEN": "voy_pat_xxxxx"
},
"args": [
"-y",
"@voyagier/cli",
"mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Search flights, book activities, manage trip plans — from your terminal. Everything syncs to voyagier.com.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@voyagier/cli' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @voyagier/cli against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ecommerce
Девять российских маркетплейсов и китайский Taobao как MCP-серверы: Wildberries, Ozon, Яндекс Маркет, Детский мир, Авито, Мегамаркет, Lamoda, DNS, Ситилинк. Плюс сравнение цен по всем сразу. Только чтение, ключи не нужны.
Monetize any MCP server: x402 paywall, pay-per-call billing in USDC on Base, agent marketplace.
MCP server for the Shopify Admin API: products, orders, customers, inventory, discounts.
MCP server for Salesforce B2C Commerce Cloud development assistance
MCP Security Weekly
Get CVE alerts and security updates for com.voyagier/cli and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Search flights, book activities, manage trip plans — from your terminal. Everything syncs to voyagier.com.
npm install -g voyagier # or the canonical package: @voyagier/cli
voyagier auth set-token <your-token>
voyagier doctor # confirm auth + schema reachability
voyagier is a convenience alias that tracks the latest compatible @voyagier/cli release (currently ^2). Pinning an exact version? Use the canonical package: npm install -g @voyagier/cli@<version>.
No install permissions (sandboxed agent, CI)? Every command works zero-install via npx:
VOYAGIER_TOKEN=<your-token> npx @voyagier/cli doctor --json
A trip plan is a goal graph: the plan ships with goals (flights, hotel, dates, destination, travellers) and you compose the trip by searching against those goals and selecting options. Searches are asynchronous — a search creates a selection, and options arrive shortly after, so you poll for them.
# 1) Resolve a client (idempotent by email)
voyagier clients upsert --email "smith@example.com" --name "Smith Family" \
--type Individual --json
# 2) Scaffold a plan (creates the plan + the goal graph its template names;
# optionally adds the party if you pass --travellers)
voyagier plan-trip --client "Smith Family" --title "Smith — Tokyo" --json
# --template picks the shape: RoundTripFlightAndHotel (default) | RoundTripFlight
# | OneWayFlight | OneWayFlightAndHotel | HotelOnly | Blank
# Returns a scaffold summary: { ok, tripPlanId, title, travellerIds, scaffolded,
# template, goals, note, url, nextSteps } — nextSteps are the compose commands.
# 3) Add a traveller
voyagier travellers add --plan <PLAN_ID> --first John --last Smith \
--type Adult --json
# 4) Search flights → poll for options → select
voyagier search flights --plan <PLAN_ID> --from JFK --to NRT \
--date 2026-09-15 --return 2026-09-22 --json
# Returns a selectionId. Options are fetched asynchronously:
voyagier selection-options <SELECTION_ID> --wait --json
voyagier select --selection-id <SELECTION_ID> --option-id <OPTION_ID> --wait --json
# 5) Search a hotel → poll → select
voyagier search hotels --plan <PLAN_ID> --location Tokyo \
--checkin 2026-09-15 --checkout 2026-09-22 --json
voyagier selection-options <SELECTION_ID> --wait --json
voyagier select --selection-id <SELECTION_ID> --option-id <OPTION_ID> --json
# 6) Inspect readiness at any time — one call: what's blocked, what's next
voyagier plan-status <PLAN_ID> --json
# 7) Pre-flight (dry-run: blockers + chargeable subtotal), then checkout (price gate required)
voyagier book <PLAN_ID> --dry-run --json # preview: blockers + chargeable subtotal; no gate needed
voyagier book <PLAN_ID> --expect-total <subtotal> --json # checkout only at that exact price
voyagier book <PLAN_ID> --validate --expect-total <subtotal> --json # strict: also abort if ANY item is non-bookable
| Selection | Bookable? | Source |
|---|---|---|
| Activity | ✅ per slot | Activity supplier |
| Hotel | ✅ via room-rate item | Accommodation supplier / advisor inventory (pick hotel → pick room; baseline rate auto-carted; rate-less listings stay display-only) |
| Flight | ✅ via Fare & Cabin |