Skip to main content

Plan travel itineraries with Gemini AI, live Amadeus flights, and Airbnb stays

Workflow preview

Workflow preview
100%
Plan travel itineraries with Gemini AI, live Amadeus flights, and Airbnb stays preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

This workflow contains community nodes that are only compatible with the self hosted version of n8n. Here is the Full Node by Node Breakdown of the workflow Workflow Execution Video: [https://youtu...

Best for

  • Personal Productivity automation workflows
  • AI Chatbot automation workflows
  • intermediate n8n builders looking for reusable templates

Tools used

n8n-nodes-mcp.mcpclienttool, @n8n/n8n-nodes-langchain.lmchatgooglevertex, n8n-nodes-base.webhook, n8n-nodes-base.respondtowebhook, n8n-nodes-base.set, n8n-nodes-base.httprequest, n8n-nodes-base.code, @n8n/n8n-nodes-langchain.agent

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by iamvaar.

Original n8n.io source

1.1 Workflow description

Title
Plan travel itineraries with Gemini AI, live Amadeus flights, and Airbnb stays
Workflow name
Plan travel itineraries with Gemini AI, live Amadeus flights, and Airbnb stays

This workflow contains community nodes that are only compatible with the self-hosted version of n8n.

Here is the Full Node-by-Node Breakdown of the workflow Workflow

Execution Video: https://youtu.be/qkZ6UaO7aCE


1. Webhook (Webhook)
  • Purpose: Accepts incoming user queries via HTTP GET with the text parameter.
  • Example input: 4 people from Germany to Bangkok @14th August 2025

2. AI Agent (AI Agent)
  • Type: LangChain Agent

  • Model: Google Gemini 2.5 Flash via Vertex AI

  • Prompt logic:

    • Extracts structured travel info (origin city, destination, date, number of people)
    • Determines 3-letter IATA codes
    • Uses MCP’s Airbnb Tool to scrape listings starting from that date
  • Returns:

    • A markdown + bullet-format response with:

      • Structured trip info
      • List of Airbnb listings with titles, price, rating, and link

3. MCP Client List Tool (MCP Client List Tool)
  • Purpose: Fetches a list of tools registered with MCP (Multi Channel Parser) client for the AI agent to select from
  • Used by: AI Agent as part of listTools() phase

4. MCP Execute Tool (MCP Execute Tool)
  • Purpose: Executes the selected MCP tool (Airbnb scraper)
  • Tool input: Dynamic — passed by AI Agent using $fromAI('Tool_Parameters')

5. Google Vertex Chat Model (Google Vertex Chat Model)
  • Purpose: Acts as the LLM behind the AI Agent
  • Model: Gemini 2.5 Flash from Vertex AI
  • Used for: Language understanding, extraction, decision-making

6. Grabbing Clean Data (Code Node)
  • Purpose: Parses AI output to extract:

    • Structured trip data
    • Airbnb listings (with title, rating, price, link)
  • Handles:

    • Bullet (•) and asterisk (*) formats
    • New and old markdown styles
    • Fallbacks for backward compatibility
  • Output: Clean JSON:

    {
      "tripInformation": {...},
      "listings": [...],
      "totalListings": X,
      ...
    }
    

7. Flight Search with fare (HTTP Request)
  • API: Amadeus Flight Offers API

  • Purpose: Searches live flight offers using:

    • originIataCode
    • destinationIataCode
    • travelDate
    • numberOfPeople
  • Auth: OAuth2


8. Flight Data + Airbnb Listings (Code Node)
  • Purpose:

    • Parses Amadeus flight offers
    • Formats date, time, and durations
    • Merges flight results with earlier Airbnb + trip info JSON
    • Sorts by cheapest total price
  • Output:

    {
      "tripInformation": {...},
      "listings": [...],
      "allFlightOffers": [...]
    }
    

9. Edit Fields (Set Node)
  • Purpose:

    • Assigns final response fields into clean keys:

      • traveldetails
      • listings
      • flights

10. Respond to Webhook
  • Purpose: Sends back the final structured JSON response to the caller.
  • Output: Combined travel itinerary with flights + Airbnb

Summary

This end-to-end workflow is a fully autonomous travel query-to-itinerary engine. From a plain text like “4 people from Vijayawada to Bangkok @14th August 2025,” it:

  • Parses and understands the query using an AI agent
  • Fetches Airbnb stays by scraping live listings
  • Searches real-time flights via Amadeus
  • Merges and formats everything into structured, digestible JSON

No manual parsing, no frontend — just AI + APIs + automation.

NOTE: I JUST USED A COMMUNITY NODE "n8n-nodes-mcp" + UNOFFICIAL AIRBNB MCP

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - MCP Client List Tool

Type / Role
n8n-nodes-mcp.mcpClientTool - mcpClientTool
Config choices
Version 1

Block 2 - MCP Execute Tool

Type / Role
n8n-nodes-mcp.mcpClientTool - mcpClientTool
Config choices
Version 1

Block 3 - Google Vertex Chat Model

Type / Role
@n8n/n8n-nodes-langchain.lmChatGoogleVertex - lmChatGoogleVertex
Config choices
Version 1

Block 4 - Webhook

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 2

Block 5 - Respond to Webhook

Type / Role
n8n-nodes-base.respondToWebhook - respondToWebhook
Config choices
Version 1.4

Block 6 - Edit Fields

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 7 - Flight Search with fare

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 8 - Grabbing Clean Data

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 9 - Flight Data + Airbnb Listings

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 10 - AI Agent

Type / Role
@n8n/n8n-nodes-langchain.agent - agent
Config choices
Version 1.8

3. Summary Table

Workflow Plan travel itineraries with Gemini AI, live Amadeus flights, and Airbnb stays
Complexity intermediate
Nodes 10
Categories Personal Productivity, AI Chatbot
Author iamvaar
Published 29 Jul 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/6652/6652.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Plan travel itineraries with Gemini AI, live Amadeus flights, and Airbnb stays do?

This workflow contains community nodes that are only compatible with the self hosted version of n8n. Here is the Full Node by Node Breakdown of the workflow Workflow Execution Video: [https://youtu...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Personal Productivity, AI Chatbot use case.