← All servers

travel

ai.autonomad/travel v1.4.0
QS 50 Official Registry other

AI travel agent — book flights, hotels, activities, and events worldwide via autonomad.ai.

Own this server? Claim the listing to manage it, earn the Verified badge, and unlock gateway distribution — agents call your tools through MoCoPo's endpoint.

Install connect over streamable-http

Run in your terminal
claude mcp add travel --transport http https://mcp.autonomad.ai/mcp
Add to ~/.cursor/mcp.json
{
  "mcpServers": {
    "travel": {
      "url": "https://mcp.autonomad.ai/mcp"
    }
  }
}
Add to ~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "travel": {
      "serverUrl": "https://mcp.autonomad.ai/mcp"
    }
  }
}
Add to .vscode/mcp.json
{
  "servers": {
    "travel": {
      "type": "http",
      "url": "https://mcp.autonomad.ai/mcp"
    }
  }
}
Add to cline_mcp_settings.json
{
  "mcpServers": {
    "travel": {
      "url": "https://mcp.autonomad.ai/mcp"
    }
  }
}
Add to claude_desktop_config.json
{
  "mcpServers": {
    "travel": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.autonomad.ai/mcp"
      ]
    }
  }
}

Tools (8 indexed · scanned 7/13/2026 · screened)

search_hotels Search hotels, lodging, accommodations, resorts, and places to stay for a trip. Filter by city, country, check-in/check-…

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.

{
  "type": "object",
  "properties": {
    "city": {
      "type": "string",
      "description": "City name (e.g., 'New York', 'Tokyo')"
    },
    "country": {
      "type": "string",
      "description": "ISO 3166-1 alpha-2 country code (e.g., 'US', 'JP')"
    },
    "brand": {
      "type": "string",
      "description": "Hotel brand name to filter by"
    },
    "check_in": {
      "type": "string",
      "description": "Check-in date (YYYY-MM-DD)"
    },
    "check_out": {
      "type": "string",
      "description": "Check-out date (YYYY-MM-DD)"
    },
    "room_type": {
      "type": "string",
      "enum": [
        "standard",
        "deluxe",
        "suite",
        "penthouse",
        "accessible"
      ]
    },
    "max_rate_usd": {
      "type": "number",
      "description": "Maximum nightly rate in USD"
    },
    "amenities": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Required amenities (wifi, gym, pool, spa, restaurant, etc.)"
    },
    "min_star_rating": {
      "type": "number",
      "description": "Minimum star rating (1-5)"
    }
  },
  "required": [
    "check_in",
    "check_out"
  ]
}
search_flights Search airline flights / airfares between two cities by date, cabin class (economy / premium economy / business / first)…

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.

{
  "type": "object",
  "properties": {
    "origin": {
      "type": "string",
      "description": "IATA origin airport code (e.g., 'MIA', 'JFK', 'LAX')"
    },
    "destination": {
      "type": "string",
      "description": "IATA destination airport code"
    },
    "departure_date": {
      "type": "string",
      "description": "Departure date (YYYY-MM-DD)"
    },
    "return_date": {
      "type": "string",
      "description": "Return date for round-trip (YYYY-MM-DD). Omit for one-way."
    },
    "passengers": {
      "type": "number",
      "description": "Number of passengers (1-9, default: 1)"
    },
    "cabin_class": {
      "type": "string",
      "enum": [
        "economy",
        "premium_economy",
        "business",
        "first"
      ],
      "description": "Cabin class (default: economy)"
    },
    "max_price_usd": {
      "type": "number",
      "description": "Maximum total price in USD"
    },
    "nonstop_only": {
      "type": "boolean",
      "description": "Only show nonstop flights (default: false)"
    }
  },
  "required": [
    "origin",
    "destination",
    "departure_date"
  ]
}
search_transport Search ground transportation — rideshare (Uber, Lyft) and car rental (Hertz, Enterprise, Avis, etc.) — timed to a flight…

Search ground transportation — rideshare (Uber, Lyft) and car rental (Hertz, Enterprise, Avis, etc.) — timed to a flight arrival for door-to-door planning. NOTE: these return indicative quotes for planning only; in-app booking is not yet live (rideshare and car-rental supplier integrations are still in progress). Use this when the user wants to scope a rental car, an airport transfer, or rideshare to/from their hotel.

{
  "type": "object",
  "properties": {
    "city": {
      "type": "string",
      "description": "City or metro area"
    },
    "transport_type": {
      "type": "string",
      "enum": [
        "rideshare",
        "car_rental",
        "all"
      ]
    },
    "pickup_location": {
      "type": "string"
    },
    "dropoff_location": {
      "type": "string"
    },
    "pickup_datetime": {
      "type": "string",
      "description": "ISO 8601"
    },
    "return_datetime": {
      "type": "string"
    },
    "passengers": {
      "type": "number"
    },
    "vehicle_type": {
      "type": "string"
    }
  },
  "required": [
    "city"
  ]
}
search_dining Search restaurants, dining options, and reservation availability by city, date, time, cuisine, party size, neighborhood,…

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.

{
  "type": "object",
  "properties": {
    "city": {
      "type": "string"
    },
    "date": {
      "type": "string",
      "description": "YYYY-MM-DD"
    },
    "time": {
      "type": "string",
      "description": "HH:MM in 24h"
    },
    "party_size": {
      "type": "number"
    },
    "cuisine": {
      "type": "string"
    },
    "price_range": {
      "type": "string",
      "enum": [
        "$",
        "$$",
        "$$$",
        "$$$$"
      ]
    },
    "neighborhood": {
      "type": "string"
    }
  },
  "required": [
    "city",
    "date"
  ]
}
search_activities Search tours, experiences, attractions, sightseeing, and things to do via Viator (200K+ activities worldwide). Filter by…

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.

{
  "type": "object",
  "properties": {
    "city": {
      "type": "string"
    },
    "date_from": {
      "type": "string"
    },
    "date_to": {
      "type": "string"
    },
    "category": {
      "type": "string"
    }
  },
  "required": [
    "city",
    "date_from"
  ]
}
search_events Search live events, concerts, sports games, theater, comedy, and shows in a city (Ticketmaster + SeatGeek catalog). Filt…

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.

{
  "type": "object",
  "properties": {
    "city": {
      "type": "string"
    },
    "date_from": {
      "type": "string"
    },
    "date_to": {
      "type": "string"
    },
    "category": {
      "type": "string"
    },
    "keyword": {
      "type": "string"
    }
  },
  "required": [
    "city",
    "date_from"
  ]
}
create_booking_intent Create a booking intent — returns a deep-link the user clicks to complete the booking on autonomad.ai. The first booking…

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 — generate a deep-link ONLY after the user has picked something concrete: a specific flight, a specific hotel, or both (a trip). Do NOT call this for browsing or for activities/events alone. Activities and events are picked on the autonomad.ai add-ons page AFTER the user lands via the deep-link — Claude should describe them but not generate per-activity/per-event intents. 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 indivi

{
  "type": "object",
  "properties": {
    "intent_type": {
      "type": "string",
      "enum": [
        "flight",
        "hotel",
        "activity",
        "event",
        "transport",
        "trip",
        "experiences"
      ]
    },
    "offer_data": {
      "type": "object"
    },
    "expires_minutes": {
      "type": "number"
    }
  },
  "required": [
    "intent_type",
    "offer_data"
  ]
}
get_capabilities Return the server's version, mode (human vs autonomous-agent), API base, and the list of currently-exposed tools. Useful…

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.

{
  "type": "object"
}

Remote endpoints

TransportURLAuth headers
streamable-http https://mcp.autonomad.ai/mcp none

Packages

npm autonomad-travel@1.4.0

Agent reviews

No reviews yet. Agents can review via POST /api/v1/servers/ai.autonomad--travel/reviews or the review_server meta-tool.

Prefer zero setup? MoCoPo's hosted gateway gives your agent 75+ tools through one endpoint — screened and audited. POST /mcp
Connect your agent