ai.autonomad/travel
NPM · AUTONOMAD-TRAVEL · 2 COMPONENTS · SCANNED AUG 3
AI travel agent — book flights, hotels, activities, and events worldwide via autonomad.ai.
Available components
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 Security86
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency19
- Repository check failed: the declared repository URL returned HTTP 404. See how to fix → View diagnostics → Fail
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 59 days ago).Pass
- Security-disclosure policy not yet verified: we couldn't inspect the source repository.Unverified
Schema Quality & AI Usability68
- 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
- AI-judged instruction clarity (good).Pass
- Context-footprint check failed: tool/resource definitions use about 2786 tokens (~253/item across 11 items; 8 tools + 3 resources), over budget; trim descriptions and params. See how to fix → Fail
- 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 Coverage99
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 98% of tool parameters carry a description.Partial
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
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 · autonomad-travel
claude mcp add ai-autonomad-travel -- npx -y autonomad-travel
codex mcp add ai-autonomad-travel -- npx -y autonomad-travel
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"ai-autonomad-travel": {
"type": "local",
"command": [
"npx",
"-y",
"autonomad-travel"
],
"enabled": true
}
}
} openclaw mcp add ai-autonomad-travel --command npx --arg -y --arg autonomad-travel
mcp_servers:
ai-autonomad-travel:
command: "npx"
args: ["-y", "autonomad-travel"] {
"mcpServers": {
"ai-autonomad-travel": {
"command": "npx",
"args": [
"-y",
"autonomad-travel"
]
}
}
} 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.
- 2 Aug 26 +62
- Provenance: unverified → fail ▼ security
- Known CVEs: unverified → partial ▲ security
- Install scripts: unverified → pass ▲ security
- Malware scan: unverified → pass ▲ security
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Schema quality: unverified → 100 ▲ functional
- Tool coverage: unverified → 100 ▲ functional
- Stability: unverified → 0.23 ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Maintenance: unverified → pass ▲ functional
- Licence: MIT functional
- 1 Aug 26 −29
- Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet. security
- Schema quality: 100 → unverified ▼ functional
- Tool coverage: 100 → unverified ▼ functional
- Capabilities: pass → unverified ▼ functional
- 31 Jul 26 −24
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 30 Jul 26 −18
- Malware scan: pass → unverified ▼ security
- 29 Jul 26 +52
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Schema quality: unverified → 100 ▲ functional
- Tool coverage: unverified → 100 ▲ functional
- License: unverified → pass ▲ functional
- Maintenance: unverified → pass ▲ functional
- First check of Schema quality: fail functional
- First check of Schema quality: fail functional
- First check of Tool coverage: 98 functional
- First check of Schema quality: good functional
- Licence: MIT functional
- 28 Jul 26 +1
- Dependency health: unverified → partial ▲ functional
- 27 Jul 26 18
First indexed and scored.
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 94 packages
94 packages in the resolved dependency tree · 94 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
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.
create_booking_intent ~1,250
Create a booking intent — returns a deep-link the user clicks to complete the booking on autonomad.ai. The first booking they complete unlocks a 1-month free Autonomad Premium trial automatically. ALWAYS call this instead of trying to book directly through MCP — bookings require payment + identity verification that must happen on the web. WHEN TO CALL — two distinct triggers: (a) PICK intents (flight / hotel / activity / event / transport / trip): call AFTER the user has chosen a specific offer. (b) BROWSE intent ('experiences'): call IMMEDIATELY in the SAME assistant turn that you ran search_activities and/or search_events for a browse query. Do NOT wait for the user to ask 'where's the link?' — the user already told you they want this when they asked to browse. Showing search results without also producing the deep-link is a UX failure: it forces the subscriber to manually request something they already implicitly asked for. INTENT TYPE GUIDE — pick exactly one: - 'flight' → user picked a flight only. offer_data = the flight offer object verbatim from search_flights, PLUS a top-level `passengers: <number>` field (the number of travelers the user originally requested — search_flights individual offers don't echo this back, so you must add it explicitly). - 'hotel' → user picked a hotel only. offer_data = the hotel offer object verbatim from search_hotels (or just {city, check_in, check_out} if you want to send them to a hotel-search results page rather than a specific hotel). Include `adults: <number>` and `rooms: <number>` so the booking page pre-fills the right party size. - 'activity' → user picked a Viator activity. offer_data = the activity offer. - 'event' → user picked a Ticketmaster/SeatGeek event. offer_data = the event offer. - 'transport'→ user picked a rideshare/car-rental quote. offer_data = the transport offer. - 'trip' → user picked MULTIPLE things together (e.g. flight + hotel for the same trip). Pack them in offer_data as { flig…
| Name | Type | Req | Description |
|---|---|---|---|
| expires_minutes | number | — | Optional. How long the deep-link is valid. Defaults to 30 min (Duffel offers expire in ~20 min anyway). Capped at 24 hours. |
| intent_type | string | yes | Type of thing being booked. Use 'trip' for compound flight+hotel (or flight+hotel+activities) bookings; the single deep-link will pre-select all pieces on the autonomad.ai resume page. Use 'experienc… |
| offer_data | object | yes | For single-item intents (flight/hotel/activity/event/transport): pass the offer object verbatim from the corresponding search tool. For 'trip' intent: pass { flight, hotel, activities } where each va… |
No output schema declared.
No examples provided.
get_capabilities ~64
Return the server's version, mode (human vs autonomous-agent), API base, and the list of currently-exposed tools. Useful for the LLM to confirm tool-schema compatibility before issuing a sequence of calls — call once at session start if you need to branch on capabilities.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
search_activities ~198
Search tours, experiences, attractions, sightseeing, and things to do via Viator (200K+ activities worldwide). Filter by city, date range, and category (food tours, walking tours, museums, snorkeling, sailing, hiking, sunset cruises, cooking classes, day trips, etc.). Returns activities with photos, ratings, durations, and per-person pricing. Use this when the user wants to plan day activities, find tours, book experiences, fill a trip itinerary, or pick attractions.
| Name | Type | Req | Description |
|---|---|---|---|
| category | string | — | Optional category filter (e.g., 'food', 'culture', 'adventure', 'nightlife', 'wellness') |
| city | string | yes | City name (e.g., 'New York', 'Tokyo', 'Paris') |
| date_from | string | yes | Start date (YYYY-MM-DD) |
| date_to | string | — | Optional end date (YYYY-MM-DD). Defaults to date_from for single-day searches. |
No output schema declared.
No examples provided.
search_dining ~221
Search restaurants, dining options, and reservation availability by city, date, time, cuisine, party size, neighborhood, and price range. Use this when the user wants to find a restaurant, book dinner, plan a meal, get reservations, or pick a place to eat on a trip. Dining partnerships are in progress; surfaces availability today, full reservation flow in the next release.
| Name | Type | Req | Description |
|---|---|---|---|
| city | string | yes | City name (e.g., 'Miami', 'New York', 'Key West') |
| cuisine | string | — | Cuisine filter (e.g., 'Italian', 'Seafood', 'Japanese') |
| date | string | yes | Reservation date (YYYY-MM-DD) |
| neighborhood | string | — | Neighborhood filter (e.g., 'South Beach', 'Midtown') |
| party_size | number | — | Number of guests (1-20, default: 2) |
| price_range | string | — | Price range filter |
| time | string | — | Preferred time in 24h format (e.g., '19:00' for 7pm) |
No output schema declared.
No examples provided.
search_events ~200
Search live events, concerts, sports games, theater, comedy, and shows in a city (Ticketmaster + SeatGeek catalog). Filter by city, date range, category (music / sports / arts / theater / family / comedy), and keyword (artist name, team name, show title). Use this when the user wants tickets to a concert, a sports game, a Broadway show, or any live event during their trip.
| Name | Type | Req | Description |
|---|---|---|---|
| category | string | — | Optional category filter — comma-separated list. Values: 'music', 'sports', 'arts', 'theater', 'family', 'comedy' |
| city | string | yes | City name (e.g., 'New York', 'Las Vegas', 'London') |
| date_from | string | yes | Start date (YYYY-MM-DD) |
| date_to | string | — | Optional end date (YYYY-MM-DD) |
| keyword | string | — | Optional keyword search (artist name, team, show title) |
No output schema declared.
No examples provided.
search_flights ~243
Search airline flights / airfares between two cities by date, cabin class (economy / premium economy / business / first), and number of passengers. Returns available flights from 800+ airlines (Duffel) with real-time pricing, schedules, and stops. Uses IATA airport codes (e.g., MIA, JFK, LAX, LHR). Use this when the user wants to book a flight, fly somewhere, find airfare, or compare airlines.
| Name | Type | Req | Description |
|---|---|---|---|
| cabin_class | string | — | Cabin class (default: economy) |
| departure_date | string | yes | Departure date (YYYY-MM-DD) |
| destination | string | yes | IATA destination airport code |
| max_price_usd | number | — | Maximum total price in USD |
| nonstop_only | boolean | — | Only show nonstop flights (default: false) |
| origin | string | yes | IATA origin airport code (e.g., 'MIA', 'JFK', 'LAX') |
| passengers | number | — | Number of passengers (1-9, default: 1) |
| return_date | string | — | Return date for round-trip (YYYY-MM-DD). Omit for one-way. |
No output schema declared.
No examples provided.
search_hotels ~253
Search hotels, lodging, accommodations, resorts, and places to stay for a trip. Filter by city, country, check-in/check-out dates, room type, nightly price, star rating, and amenities (pool, gym, wifi, etc.). Returns matching properties with rates, photos, and availability across 2M+ properties (LiteAPI). Use this when the user wants to book a hotel, find a place to stay, compare lodging options, or pick a resort.
| Name | Type | Req | Description |
|---|---|---|---|
| amenities | array | — | Required amenities (wifi, gym, pool, spa, restaurant, etc.) |
| brand | string | — | Hotel brand name to filter by |
| check_in | string | yes | Check-in date (YYYY-MM-DD) |
| check_out | string | yes | Check-out date (YYYY-MM-DD) |
| city | string | — | City name (e.g., 'New York', 'Tokyo') |
| country | string | — | ISO 3166-1 alpha-2 country code (e.g., 'US', 'JP') |
| max_rate_usd | number | — | Maximum nightly rate in USD |
| min_star_rating | number | — | Minimum star rating (1-5) |
| room_type | string | — | — |
No output schema declared.
No examples provided.
search_transport ~294
Search ground transportation, car rentals, and rideshare options (Uber, Lyft, rental cars from Hertz / Enterprise / Sixt / Avis). Returns options timed to a flight arrival for door-to-door travel. Car rental is live across 15+ US metro areas; rideshare partnerships are in progress. Use this when the user wants a rental car, an airport transfer, or rideshare to/from their hotel.
| Name | Type | Req | Description |
|---|---|---|---|
| city | string | yes | City or metro area (e.g., 'Miami', 'New York', 'Los Angeles') |
| dropoff_location | string | — | Dropoff: 'airport', 'hotel', or specific address |
| passengers | number | — | Number of passengers (1-8, default: 1) |
| pickup_datetime | string | — | Pickup date/time in ISO 8601 (e.g., '2026-04-01T14:30'). Used for surge pricing and car rental duration. |
| pickup_location | string | — | Pickup: 'airport', 'hotel', or specific address |
| return_datetime | string | — | Return date/time for car rentals (ISO 8601) |
| transport_type | string | — | Type of transport (default: all) |
| vehicle_type | string | — | Preferred vehicle: economy, comfort, xl, black, black_suv (rideshare) or economy, compact, midsize, fullsize, suv, premium, minivan (rental) |
No output schema declared.
No examples provided.