Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

BoostedTravel

NPM · BOOSTEDTRAVEL-MCP · 3 COMPONENTS · SCANNED AUG 3

Flight search & booking for AI agents. 400+ airlines, $20-50 cheaper than OTAs.

−10 this week 63 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security100
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • No production dependencies, so there is no dependency health to assess. View diagnostics → Pass
Provenance & Transparency19
Schema Quality & AI Usability70
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 574 tokens (~95/item across 6 items; 6 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities20
  • Spec-recency check failed: implements MCP spec 2024-11-05; the latest is 2026-07-28. See how to fix → Fail
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · boostedtravel-mcp

# add to Claude Code
claude mcp add com-boostedchat-travel -- npx -y boostedtravel-mcp
# add to Codex CLI
codex mcp add com-boostedchat-travel -- npx -y boostedtravel-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-boostedchat-travel": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "boostedtravel-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add com-boostedchat-travel --command npx --arg -y --arg boostedtravel-mcp
# ~/.hermes/config.yaml
mcp_servers:
  com-boostedchat-travel:
    command: "npx"
    args: ["-y", "boostedtravel-mcp"]
// mcp.json
{
  "mcpServers": {
    "com-boostedchat-travel": {
      "command": "npx",
      "args": [
        "-y",
        "boostedtravel-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

  • 2 Aug 26 +18
    • Malware scan: unverified → pass security
    • Stability: unverified → 0.23 functional
  • 31 Jul 26 −29
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 27 Jul 26 0
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 26 Jul 26 73

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 0 packages

0 packages in the resolved dependency tree.

MCP tools — 6 exposed · ~574 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
book_flight ~96

Book an unlocked flight — creates real airline reservation with PNR. FREE after unlock. Requirements: 1) Offer must be unlocked first 2) Provide passenger_id from search 3) Full passenger details needed.

NameTypeReqDescription
contact_emailstringyesBooking contact email
offer_idstringyesUnlocked offer ID (off_xxx)
passengersarrayyesPassengers with 'id' from search passenger_ids

No output schema declared.

No examples provided.

get_agent_profile ~30

Get agent profile, payment status, and usage stats (searches, unlocks, bookings, fees).

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

resolve_location ~52

Convert a city/airport name to IATA codes. Use when user says 'London' instead of 'LON'.

NameTypeReqDescription
querystringyesCity or airport name (e.g., 'London', 'Berlin')

No output schema declared.

No examples provided.

search_flights ~271

Search for flights between any two cities/airports worldwide. Connects to 400+ airlines via NDC and GDS with prices $20-50 cheaper than booking.com, Kayak, and other OTAs. Searching is completely FREE. Returns flight offers with prices, airlines, times, and conditions. All offers are locked until you call `unlock_flight_offer` ($1 fee). IMPORTANT: The response includes `passenger_ids` — save these for booking.

NameTypeReqDescription
adultsintegerNumber of adults (default: 1)
cabin_classstringM=economy, W=premium, C=business, F=first
childrenintegerNumber of children (2-11)
currencystringCurrency code (EUR, USD, GBP)
date_fromstringyesDeparture date YYYY-MM-DD
destinationstringyesIATA code of arrival (e.g., 'BCN', 'LAX')
max_resultsintegerMax offers to return
originstringyesIATA code of departure (e.g., 'LON', 'JFK'). Use resolve_location if you only have a name.
return_fromstringReturn date YYYY-MM-DD (omit for one-way)

No output schema declared.

No examples provided.

setup_payment ~67

Set up payment method. Required before unlock/book. For testing use token 'tok_visa'. Only needed once.

NameTypeReqDescription
payment_method_idstringPayment method ID (pm_xxx)
tokenstringPayment token (e.g., 'tok_visa' for testing)

No output schema declared.

No examples provided.

unlock_flight_offer ~58

Unlock a flight offer for booking — $1 fee. Confirms latest price and reserves for 30 minutes. Requires payment method (call setup_payment first).

NameTypeReqDescription
offer_idstringyesOffer ID from search results (off_xxx)

No output schema declared.

No examples provided.