Travel Workflows
Travel and logistics
Webhook Filter Sync for Accommodation Booking
The 'Webhook Filter Sync for Accommodation Booking' workflow is designed to streamline the management of accommodation projects by automating the synchronization process between Notion and Todoist. This workflow begins by fetching all projects fro...
n8n$6.99Automate Flight Searches and Recommendations with DeepSeek AI and Google Flights
This workflow automates the process of searching and comparing flights using DeepSeek AI and Google Flights API. It provides users with real-time flight options, flexible travel date suggestions, and AI-powered travel recommendations.
n8n$4.99Daily Weather Forecast Emails with MeteoSource and Gmail
## Who's it for People and teams who want a quick, reliable daily weather email without opening an app. Ideal for busy mornings, shared team inboxes, or anyone who prefers a simple plain text summary. ## How it works / What it does - Runs every day at 07:00. - Reads two config values: `place_id` and `send_to_email`. - Calls Meteosource's Point Forecast for the selected location. - Sends a plain text Gmail message: - Subject shows today's summary. - Body shows tomorrow's summary. - Footer includes a small “Powered by Meteosource” line. ## How to set up 1. In the Config node, set `place_id` to your Meteosource location key and `send_to_email` to the recipient. 2. Add credentials: - Meteosource API key for the HTTP Request. - Gmail OAuth2 for sending email. 3. Keep the default schedule at 07:00 or change the hour in the Schedule node. 4. Test by running once to verify the subject and body content. ## Requirements - n8n environment - Meteosource API key - Gmail account with OAuth2 credentials ## How to customize the workflow - Change send time in the Schedule node. - Add CC or modify the subject in the Gmail node. - Swap `place_id` for a different city. - Extend the email with temperature, precipitation, or alerts if needed.
n8n$4.99Automate Airbnb Searches via Telegram with AI and Voice Support
This workflow creates a smart Telegram bot that helps users find Airbnb accommodations using natural language and voice inputs, leveraging AI for personalized recommendations.
n8n$9.99Automate Daily Weather Updates via Telegram Using OpenWeatherMap
Automatically receive daily weather reports on Telegram, including current conditions and a 5-day forecast, using OpenWeatherMap data.
n8n$9.99Automate Flight Price Tracking with Bright Data and n8n
This workflow automates the process of finding and tracking the cheapest flight prices by scraping data from Skiplagged using Bright Data and storing it in Google Sheets.
n8n$9.99Automate Personalized Weather Reports with OpenWeatherMap, Python, and AI
This workflow automates the creation of personalized weather reports by fetching data from OpenWeatherMap, processing it with Python, and enhancing the content with AI for email delivery.
n8n$9.99Automate Weather Data Collection and Reporting with Bright Data and n8n
This workflow automates the process of collecting weather data from multiple sources using Bright Data and compiles it into detailed reports. It helps users make informed decisions by providing accurate weather forecasts without the need to manually check multiple services.
n8n$9.99Automate Hotel Booking with AI-Powered Vacation Planning
This n8n workflow creates an AI-driven vacation planning chatbot that assists users in finding and booking ideal hotel accommodations by gathering travel details and providing personalized recommendations.
n8n$4.99Automate Multilingual Engagement on LinkedIn with AI
The LinkedIn Engagement Automator with GPT-4oClaude integrates advanced AI capabilities to enhance your LinkedIn interactions. This workflow intelligently generates multilingual comments, mentions, and reactions, allowing users to engage with dive...
n8n$24.99Automate Flight Fare Comparison with Real-Time Email Alerts
This workflow automatically fetches and compares live flight fares from multiple platforms, sorts the results by price, and sends the best deals via email. It enables continuous fare monitoring and helps secure the best flight options effortlessly.
n8n$14.99Automated Flight Fare Monitoring and Alert System
This n8n workflow automatically tracks flight fare changes using the Aviation Stack API and sends alerts via Gmail and Telegram when significant price drops or increases are detected.
n8n$9.99Travel Planning Assistant with MongoDB Atlas, Gemini LLM, and Vector Search
Building agentic AI workflows often requires multiple moving parts: memory management, document retrieval, vector similarity, and orchestration. Until now, these pieces had to be custom-wired. But with the new native n8n nodes for MongoDB Atlas, we reduce that overhead dramatically. With just a few clicks: - Store and recall long-term memory from MongoDB - Query vector embeddings stored in Atlas Vector Search - Use these results in your LLM chains and automation logic In this example, we present an ingestion and AI Agent flows that focus around Travel Planning. The different interest points that we want the agent to know about can be ingested into the vector store. The AI Agent will use the vector store tool to get relevant context about those points of interest if it needs to. ### Prerequisites - [MongoDB Atlas project and Cluster](https://www.mongodb.com/docs/atlas/tutorial/create-new-cluster/) - OpenAI Valid API Key for embeddings (can be other provider) - Gemini API Key for the LLM (can be other provider) ### How it works: There are 2 main flows. 1. One is the ingesting flow: - Gets a document from a webhook and uses MongoDB Vector Atlas to embed the document `title` and `description` into `points_of_interest` collection. - Embeddings are stored in a field named `embedding`. - Embeddings used are OpenAI's but it can be any type of supported embedders. 2. The second flow is an AI Agent node with Chat Memory Stored in MongoDB Atlas and a Vector Search node as a tool: - **Chat Message Trigger**: Chatting with the AI Agent will trigger the conversation stored in the MongoDB Chat Memory node. - When data is necessary, like a location search or details, it will go to the Vector Search tool. - **Vector Search Tool** - uses Atlas Vector Search index created on the `points_of_interest` collection: ``` // index name: vector_index // If you change an embedding provider, make sure the numDimensions correspond to the model. { fields: [ { type: vector, path: embedding, numDimensions: 1536, similarity: cosine } ] } ``` **Additional Resources** - [MongoDB Atlas Vector Search](https://www.mongodb.com/docs/atlas/atlas-vector-search/tutorials/vector-search-quick-start/?utm=n8n.io) - [n8n Atlas Vector Search docs](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoremongodbatlas?utm=n8n.io)
n8n$9.99AI Weather Forecasts with MCP Integration
# Real-time Weather Forecasts with MCP Tools This n8n workflow demonstrates how to integrate real-time weather intelligence into any automation using the Model Context Protocol (MCP). Get current conditions and 5-day forecasts with natural language queries like "What's the weather like in Miami?" or "Will it rain next Tuesday in Seattle?" - all powered by live weather data and AI. ## **Good to know** - No API keys required - uses hosted MCP weather server with built-in WorldWeatherOnline integration - Provides current conditions and detailed 5-day forecasts - Natural language queries work for any location worldwide - Powered by WorldWeatherOnline - the world's most accurate weather system - Fully preconfigured and ready to run out-of-the-box - Enterprise-ready with error handling and rate limiting ## How it works - **Natural Language Input**: Receives weather queries via webhook, chat, email, or voice - **AI Agent Processing**: n8n Agent node interprets requests and determines: - Location extraction from natural language - Weather data type needed (current or 5-day forecast) - Response formatting preferences - **MCP Weather Tool**: Live hosted server provides: - Real-time current conditions (temperature, humidity, wind, conditions) - 5-day detailed forecasts with daily highs/lows - Weather descriptions and condition codes - Powered by WorldWeatherOnline's premium data - **Intelligent Responses**: AI formats weather data into: - Conversational natural language responses - Structured data for downstream automation - Action-triggering data for workflows ## How to use - Import the workflow into n8n from the template - Add your preferred AI model API key to the Agent node - Customize the system prompt for your specific use case - Connect to your preferred input/output channels - Run and start querying weather with natural language ## Use Cases - **Smart Home Automation**: Turn on sprinklers if no rain forecast for 3 days - **Travel Planning**: Check weather for my Paris trip next week - **Event Management**: Will outdoor wedding conditions be good Saturday? - **Agriculture/Farming**: Check 5-day forecast for planting schedule - **Logistics**: Delay shipping if severe weather forecast in delivery zone - **Personal Assistant**: Should I wear a jacket today in Chicago? - **Sports/Recreation**: Surf conditions and wind forecast for weekend - **Construction**: Safe working conditions for outdoor project this week ## Requirements - n8n instance (cloud or self-hosted) - AI model provider account (OpenAI, Anthropic, Google, etc.) - Internet connection for MCP weather server access - Optional: Webhook endpoints for external integrations ## Customizing this workflow - **Location Intelligence**: Add geocoding for address-to-coordinates conversion - **Data Storage**: Save weather history to databases for trend analysis - **Dashboard Integration**: Connect to Grafana, Tableau, or custom visualizations - **Voice Integration**: Add speech-to-text for voice weather queries - **Scheduling**: Set up automated daily/weekly weather briefings - **Conditional Logic**: Trigger different actions based on weather conditions ## Sample Input/Output Natural Language Queries: - What's the weather like in Miami? - Will it rain next Tuesday in Seattle? - 5-day forecast for London - Temperature in Tokyo tomorrow - Weather conditions for outdoor event Saturday Rich Responses: ``` { location: "Miami, FL", current: { temperature: 78 °F, condition: "Partly Cloudy", humidity: 65%, wind: "10 mph SE" }, forecast: { today: "High 82 °F, Low 71 °F, 20% rain", tomorrow: "High 85 °F, Low 73 °F, Sunny" }, ai_summary: "Perfect beach weather in Miami today! Partly cloudy with comfortable temperatures and light winds." } ``` ## Why This Workflow is Unique - **Zero Setup Weather Data**: No API key management - MCP server handles everything - **World-Class Accuracy**: Powered by WorldWeatherOnline's premium weather data - **AI-Powered Intelligence**: Natural language understanding of complex weather queries - **Enterprise Ready**: Built-in error handling, rate limiting, and reliability - **Global Coverage**: Worldwide weather data with location intelligence - **Action-Oriented**: Designed for automation decisions, not just information display Transform your automations with intelligent weather awareness powered by the world's most accurate weather system! ## Setup Steps 1. The **Agent node is already configured**: - The **system prompt is included** - The **tool endpoint is pre-set** 2. All you need to do is: - Add your AI model API key to the existing Agent credential - Hit run and you're done **Full project link**: [Github: weathertrax-mcp-agent-demo](https://github.com/jaredco-ai/weathertrax-mcp-agent-demo)
n8n$4.99Automate YouTube Video Posts to LinkedIn with Ease
This n8n workflow streamlines the process of converting YouTube videos into captivating LinkedIn posts, making it perfect for content creators and marketers looking to enhance their social media presence. By automating the pipeline, users can save...
n8n$19.99Automated Error Notification via Gmail for Travel Workflows
This workflow automates error notifications through Gmail whenever a travel-related task fails, ensuring prompt attention.
n8n$15.03AI-Powered Lead Gen & Outreach: Apollo to Instantly.ai
Automates lead sourcing from Apollo, enriches with AI, qualifies ICP matches, personalizes emails, and launches campaigns in Instantly.ai via Airtable and n8n.
n8n$27.99Automate Travel Planning with AI and Couchbase Vector Search
This workflow leverages AI to help users decide on travel destinations by analyzing points of interest stored in Couchbase using vector search. It integrates OpenAI for embeddings and Google Gemini for chat responses.
n8n$9.99Automate Airbnb Deal Tracking with Bright Data and n8n
This workflow automates the process of finding and storing the best Airbnb deals by scraping listings daily using Bright Data and saving them to Google Sheets.
n8n$9.99Automate Weather Forecast Retrieval Using AI and Open-Meteo API
Leverage AI to automate the retrieval of weather forecasts by integrating OpenAI with the Open-Meteo API. This workflow is ideal for planning travel or events based on accurate weather predictions.
n8n$9.99Automate Daily Weather Reports with OpenWeather, Google Sheets, and Gmail
This workflow automates the process of fetching daily weather data from OpenWeather, storing it in Google Sheets, and emailing a formatted report via Gmail at 10:00 AM IST. Ideal for teams monitoring weather trends and correlating them with operational metrics.
n8n$4.99Check for Bargain Flights and Get Notified Using Amadeus and Gmail
## What this template does This workflow uses the Amadeus API every day to check for bargain flights for an itinerary and price target of your choice. It then automatically emails you once it has found a match. ## Setup 1. Create an API account on https://developers.amadeus.com/ 2. In **Amadeus Flight Search**, connect to OAuth2 API: - Grant Type - Client Credentials - Access Token URL - https://test.api.amadeus.com/v1/security/oauth2/token - Client ID/Secret - from your account 3. Set your details in **Gmail** 4. Set your desired Origin/Destination airports in **FromTo** 5. Set the dates ahead you wish to search in **Get Dates** (default is 7 days and 14 days) 6. Set the price target in **Under Price** ## How to test it After completing the setup steps above, just hit **Test Workflow**!
n8n$9.99Automate Business Travel Planning with AI via Telegram
Streamline your business travel planning by leveraging AI to find and book flights and hotels through Telegram. This n8n workflow uses AI and various APIs to efficiently handle travel arrangements.
n8n$14.99Airtable Tool Sticky Note Automation for Travel Accommodation
This workflow automates the process of creating sticky notes for travel accommodations by utilizing Airtable integration. It enables users to efficiently manage and organize accommodation options for various travel needs. By streamlining the data ...
n8n$13.24
Related categories
Custom AI Systems & Services
Our team of experienced AI builders will help build custom AI systems, workflows, and solutions.
Request Custom Work