n8n Automation Videos & Summaries

The best n8n tutorials, summarized. Skim key takeaways from beginner guides, advanced workflows, and AI agent builds, then decide which videos are worth your time.

45 video summaries • Sorted by popularity • Last updated Dec 10, 2025

n8n is an open-source workflow automation tool that connects apps and services without code. It can run locally or self-hosted, giving you full control over your data. Popular use cases include AI agent builds, marketing automation, data pipelines, and connecting APIs. It's a free alternative to Zapier and Make with more flexibility.

Most Popular3.2M views25:58~1 min readSave 25 min
Latest Summary

From Zero to Your First AI Agent in 25 Minutes (No Coding)

25:583.2M views1 min read25 min saved
FuturepediaFuturepedia

Key Takeaways

  • An AI agent is a system capable of reasoning, planning, and taking independent actions based on provided information, distinguishing itself from automation through its dynamic and flexible decision-making process rather than predefined, static steps.
  • Key components of an AI agent include the "brain" (the large language model like GPT or Claude), "memory" (to retain past interactions and context), and "tools" (APIs, services like Gmail or Google Sheets, for data retrieval, action execution, or orchestration).
  • Building an AI agent involves defining its core components: selecting an LLM (brain), configuring memory (e.g., simple memory for temporary context), and integrating tools (e.g., Google Calendar, OpenWeatherMap API, Google Sheets, Gmail) which can be done via pre-built integrations or custom HTTP requests.
  • The agent's behavior is directed by a prompt that specifies its role, task, available input/data, tools it can use, constraints, and desired output format, which can be effectively generated with the assistance of another AI like ChatGPT.
  • The N8N platform facilitates the creation of AI agents through a visual interface, utilizing nodes for triggers, the AI agent itself, and various tools, with a dedicated AI agent node that allows direct connection of the LLM, memory, and tools.
  • An example build demonstrated creating a personal assistant agent that checks a calendar for scheduled runs, queries weather and trail data, checks air quality via the AirNow.gov API using an HTTP request node, and recommends a suitable trail via email, showcasing the integration of multiple tools and prompt engineering.

More n8n Automation Tutorials & Reviews

45 total videos
You NEED to Use n8n RIGHT NOW!! (Free, Local, Private)26:36
NetworkChuckNetworkChuck

You NEED to Use n8n RIGHT NOW!! (Free, Local, Private)

·26:36·2.3M views·26 min saved

• n8n is a free, open-source, local, and private automation tool that is presented as a powerful alternative to services like Zapier and IFTTT. • n8n can be installed either on-premise using Docker on a Linux-based system (even a Raspberry Pi) or via a cloud-based VPS, with the latter being presented as simpler and faster. • The core functionality of n8n involves creating "workflows" with triggers (manual, scheduled) and nodes that perform specific actions, such as reading RSS feeds, sending Discord messages, or executing command-line commands. • n8n leverages JSON heavily for data handling, allowing users to dynamically insert data from previous steps into subsequent nodes by dragging and dropping or referencing JSON fields. • The platform integrates AI capabilities, allowing users to connect various LLM models (like Llama, GPT) to summarize content, analyze command outputs, and even act as agents with memory and tools to perform tasks like checking website or server status. • Advanced data manipulation in n8n includes using nodes like "limit" to restrict item count, "merge" to combine data from different sources, "set field" to select and rename data fields, and "split out" to process arrays of data individually.

Build & Sell n8n AI Agents (8+ Hour Course, No Code)8:26:39
Nate Herk | AI AutomationNate Herk | AI Automation

Build & Sell n8n AI Agents (8+ Hour Course, No Code)

·8:26:39·1.5M views·506 min saved

• The core concept is building AI agents and workflows using the no-code platform n8n, enabling users to automate tasks without programming knowledge. • The course covers setting up a free n8n trial, understanding the UI, and building various automations, starting with AI workflows before moving to AI agents. • Key distinctions are made between deterministic AI workflows (step-by-step processes) and non-deterministic AI agents (which can make decisions and use tools autonomously), with workflows being favored for reliability, cost-efficiency, and easier debugging in many scenarios. • The curriculum includes practical steps for connecting to various APIs and services (like Google Drive, OpenAI, Pinecone, Gmail, Tavi, and Superbase), often involving obtaining API keys and configuring credentials. • Specific examples demonstrated include building a RAG (Retrieval Augmented Generation) pipeline with a chatbot, a customer support workflow that classifies and responds to emails, and a LinkedIn content creation workflow that uses web scraping and AI for generating posts and images. • Advanced topics covered include setting up HTTP requests for APIs, integrating with external services like Firecrawl and Apify for web scraping, using different AI models for specific tasks, implementing dynamic memory and error logging, creating multi-agent systems (orchestrator architecture), prompt engineering techniques (reactive prompting), and utilizing community nodes like MCP servers for extended functionality. • The importance of "reactive prompting" is emphasized – starting with minimal prompts and adding detail based on observed errors, rather than proactively writing extensive prompts. • The course highlights the power of combining no-code tools with AI for tasks like generating blog posts with custom graphics, creating videos from images using APIs like Runway, and building conversational AI assistants with tools like 11 Labs. • A significant portion of the content focuses on practical, step-by-step guidance, including troubleshooting common errors and demonstrating the visual workflow builder within n8n. • The instructor emphasizes that while no-code tools are powerful for rapid development and automation, understanding their limitations is crucial for scaling to enterprise-level solutions, often requiring a hybrid approach with custom code.

n8n will change your life as a developer...5:56
FireshipFireship

n8n will change your life as a developer...

·5:56·1.1M views·5 min saved

• n8n is an open-source, self-hostable automation tool that serves as a free alternative to paid services like Zapier. • It allows users to build complex automation workflows by connecting various apps and services through a visual, flowchart-style interface, enabling automation without extensive coding. • Workflows can be triggered by events such as form submissions, database writes, voice commands, or GitHub issue updates, and can perform actions like building Docker images, posting to social media, or scraping data. • The tool can be easily tested locally by running "npx n8n" in the terminal, with the UI built using Vue.js. • For serious use, n8n can be deployed on a private server, demonstrated using a Linux VPS from Hostinger, which offers pre-built templates for quick setup. • Advanced workflow examples include using AI to generate viral video content, triggering actions based on specific emojis in messages, ordering flowers via an API, and generating apology letters dynamically using AI. • The platform provides capabilities for integrating custom code or hitting third-party APIs, handling conditional logic, and logging interactions to services like Google Sheets.

n8n Quick Start Tutorial: Build Your First Workflow [2025]14:47
n8nn8n

n8n Quick Start Tutorial: Build Your First Workflow [2025]

·14:47·892.5K views·14 min saved

• The video provides a quick start tutorial for building workflows in n8n, focusing on foundational concepts like triggers, actions, data handling, and app connections. • The core of the tutorial demonstrates building a simple workflow: a web form submission that triggers a notification to Slack if the requested installation date is within seven days. • Key n8n concepts explained include: triggers (e.g., on form submission) initiating workflows, actions performing tasks, and the concept of "items" as the unit of data passed between nodes, with nodes processing each item. • Demonstrates setting up a form trigger with custom fields (email, preferred install date) and testing it using the "execute step" function, showing how to pin data for repeated testing. • Explains how to implement conditional logic using the "if" node to route data based on specific criteria (install date comparison using date/time expressions with $now and helper methods like .plus()). • Details connecting to external applications by setting up credentials and configuring actions, using Slack's "send message" as an example, and mapping data from previous steps into the message content. • Covers activating a workflow for production use, differentiating between test and production executions, and how to inspect execution history for troubleshooting or further development.

n8n Now Runs My ENTIRE Homelab47:17
NetworkChuckNetworkChuck

n8n Now Runs My ENTIRE Homelab

·47:17·880.0K views·46 min saved

• The core value of this video is to demonstrate how to build a powerful AI agent using n8n, capable of monitoring, troubleshooting, and even fixing issues within a homelab or network environment. • The AI agent, dubbed "Terry," is set up to leverage tools like HTTP requests and SSH to interact with network devices and services (UniFi, Proxmox, Plex, NAS). • A key implementation detail is hosting the n8n instance in the cloud (e.g., via Hostinger) and using Twingate for secure remote access to the homelab, ensuring the AI agent's availability even if the local network is down. • The video emphasizes a "human-in-the-loop" approach for critical actions, allowing users to approve commands before the AI executes them, thereby mitigating risks associated with autonomous AI actions. • Advanced functionalities demonstrated include scheduling automated checks, filtering notifications to only report issues, and enabling the AI to self-diagnose and attempt fixes for various network problems, including port conflicts. • Future enhancements discussed include scaling the AI system with specialized sub-agents (Network Engineer, Storage Engineer, Linux Admin) and integrating a help desk system for user-submitted issues.

N8N FULL COURSE 6 HOURS (Build & Sell AI Automations + Agents)5:58:32
Nick SaraevNick Saraev

N8N FULL COURSE 6 HOURS (Build & Sell AI Automations + Agents)

·5:58:32·854.3K views·358 min saved

• The course provides a comprehensive, 6-hour training on N8N, covering setup, building workflows, and utilizing AI automations, aimed at enabling users to build for themselves or sell services to clients. • N8N's cloud-hosted offering is recommended for beginners due to its ease of setup, while self-hosting options are covered for advanced users. • Key N8N features demonstrated include the workflow builder canvas, nodes, triggers (manual, on-app event, schedule, webhook, form submission, when called by another workflow, chat message, email IMAP, error trigger), and the AI assistant integrated into the builder. • The course walks through building three practical workflows: a "hello world" example sending an email via Gmail, an AI-powered email customizer triggered by a form submission, and a calendar booking automation (Cal.com) that sends a personalized email and updates a CRM (ClickUp). • Emphasis is placed on using "expression" fields over "fixed" fields for dynamic data manipulation, understanding JSON data structures and N8N's array of objects data representation, and leveraging various string, number, array, object, and datetime functions for data transformation and manipulation. • Self-hosting options for N8N are detailed using platforms like Render, Railway, Digital Ocean, Heroku, and Docker on a local machine, highlighting benefits like cost savings and data security. • A comparison between N8N and Make.com is provided, with N8N favored for its superior JSON/code integration, flow control (including AI agents, loops, and conditional logic), testing capabilities, hotkeys, note-taking, and more affordable scaling, especially through self-hosting. • The course concludes by encouraging practical application of learned skills in a business context, promoting the "Maker School" community for those seeking to build a business around AI automation.

I Built a Marketing Team with 1 AI Agent and No Code (free n8n template)33:56
Nate Herk | AI AutomationNate Herk | AI Automation

I Built a Marketing Team with 1 AI Agent and No Code (free n8n template)

·33:56·816.4K views·33 min saved

• The core of this system is a single AI agent orchestrating six distinct no-code workflows within n8n, capable of generating and editing images, creating blog posts, LinkedIn posts, and videos. • Users interact with the AI marketing team via Telegram, sending voice or text commands which are transcribed and processed by the agent. • The AI can create marketing materials like a flyer for cat food with a flash sale, and subsequently edit it to appear more realistic, with each image creation/edit taking approximately one minute. • For content generation, the AI can produce a blog post on a topic like "the effect of sleep on productivity," including relevant references and a generated graphic. • Video generation involves creating multiple image prompts, generating images (e.g., a beaver building a dam), converting these into short video clips using Runway, adding sound effects via Eleven Labs, and finally rendering the clips into a cohesive video. • The system's cost involves n8n cloud ($27/month), OpenAI image generation (~$0.20 per image/edit, ~$0.20 per blog/LinkedIn post), PI API image generation (~$0.015 per image for videos), Runway video clips ($0.25 per 5-second clip), Createmate credits, and Eleven Labs ($5/month starter plan). • Setting up the system requires downloading seven n8n workflow JSON files (main agent + six tools), importing them, configuring API keys (OpenAI, Open Router, Google Drive, Google Sheets), setting up a Google Sheet for logging, and integrating a Createmate template.

This AI System Creates Longform YouTube Videos Hourly (n8n NO CODE automation tutorial 🥚)35:50
RoboNuggetsRoboNuggets

This AI System Creates Longform YouTube Videos Hourly (n8n NO CODE automation tutorial 🥚)

·35:50·770.5K views·35 min saved

• The core of the system involves two AI agents: an "ideas agent" (TAG GPT) that generates video ideas and prompts, and a "creator agent" that automates the production and publishing of long-form YouTube videos hourly or daily. • The automation workflow uses n8n, a no-code automation tool, to connect various AI services including ChatGPT for idea generation, and JSON to Video for video creation (visuals, voiceover, background music). • Key steps in the n8n workflow include setting up a schedule trigger, fetching video ideas from Google Sheets, generating scene-specific voiceover text and image prompts using an LLM (e.g., OpenAI), retrieving background music and intro videos from sources like Suno.com and Pixels.com, and using JSON to Video's API to render the final video. • The system can be adapted to various niches beyond stoicism, such as sleep stories, horror, children's stories, trivia, and zen meditation, by modifying the prompts and templates. • The tutorial provides access to downloadable n8n workflow templates and prompts through a community platform, simplifying setup for beginners and offering a ready-to-import blueprint. • Advanced customization of video templates within JSON to Video is possible through editing JSON files, with resources like JSON to Video's documentation and chatbot available for guidance.

n8n Beginner Course (1/9) - Introduction to Automation12:48
n8nn8n

n8n Beginner Course (1/9) - Introduction to Automation

·12:48·677.2K views·12 min saved

• Automation is defined as a predictable set of predetermined actions that transfer data from one point to another, crucial for making data-driven decisions rather than relying on subjective intuition. • Key concepts in automation include: • Triggers: The event that initiates an automation (e.g., form submission, scheduled time, webhook). • Filtering: Conditions that allow or block data from proceeding along specific paths within a workflow. • Actions: Operations that interact with web applications (e.g., updating a Google Sheet, sending a Slack message, creating a CRM lead). • A typical workflow starts with a trigger, followed by data manipulation (sorting, filtering, formatting, transforming), and concludes with actions to transfer or utilize the data. • Before building any automation, it is essential to map out the process using flowcharts to ensure a clear understanding of the task, identify necessary tools, assess feasibility, and estimate the workload. • Mapping out an automation involves creating blocks for each part of the process and linking them with arrows to represent their interaction, working from left to right, starting with the trigger and leading to the final actions.

Master n8n in 2 Hours: Complete Beginner’s Guide for 20262:10:36
Jono CatliffJono Catliff

Master n8n in 2 Hours: Complete Beginner’s Guide for 2026

·2:10:36·617.1K views·130 min saved

• n8n is presented as a versatile automation platform that connects various applications to automate mundane tasks, functioning as a direct replacement for manual labor in areas like data extraction, document generation, task management, social media posting, and even making phone calls. • The guide details the creation of five practical n8n workflows: • 1. A lead generation system that automatically adds website inquiries to a Google Sheet, sends an email, and notifies a team for a rapid follow-up, aiming to increase conversion rates. • 2. An AI agent designed to act as a personal assistant, managing daily tasks, calendar events, and upcoming reminders. • 3. A sub-agent that generates daily reports on uncontacted leads, ensuring no potential business is missed. • 4. Advanced functionality exploration including Webhooks for receiving data and HTTP requests for sending data outside of n8n, enabling integration with virtually any application. • 5. A RAG (Retrieval-Augmented Generation) system that builds a custom database for an advanced AI agent, allowing it to retrieve specific information from uploaded documents or company data. • The tutorial emphasizes practical application by providing free blueprints for all five workflows, encouraging viewers to import and adapt them, and highlights that most tools used are free, with the exception of OpenAI's API for AI functionalities which requires a small balance. • Key technical concepts covered include triggers and actions, data types (text, numbers, booleans, dates, binary, arrays, collections), data transformations, conditional logic (filters, IF statements, switch statements), working with JSON, expressions, and debugging workflows through execution logs. • The guide also touches upon the cost-effectiveness of n8n compared to alternatives like Zapier and Make.com, and mentions the possibility of self-hosting for free.

n8n Complete Course (Beginner to Advanced) | WhatsApp Automation Project18:03
Manish Digital AcademyManish Digital Academy

n8n Complete Course (Beginner to Advanced) | WhatsApp Automation Project

·18:03·571.4K views·17 min saved

• The video provides a comprehensive tutorial on building a WhatsApp automation bot using n8n, suitable for beginners to advanced users. • The core value lies in actionable utility, demonstrating a step-by-step process to create a functional AI-powered bot for tasks like restaurant ordering and customer service. • Key components covered include setting up n8n, configuring triggers (specifically "On Chat Message" and WhatsApp integration), connecting AI models like Gemini via API keys, implementing memory for conversational context, and utilizing tools like Google Sheets for database integration and order management. • A practical demonstration includes building a bot that can handle customer inquiries about restaurant availability, take orders, and save them to a Google Sheet, while also respecting inventory limitations through system prompts. • The tutorial walks through integrating the n8n workflow with WhatsApp Business API, explaining the necessary steps for authentication, app creation on Meta for Developers, and setting up message triggers and send actions. • The video also highlights the potential for earning income by offering these custom automation solutions to local businesses.

n8n Tutorial for Beginners: How to Build AI Automations for FREE (Step-by-Step)19:15
Charlie ChangCharlie Chang

n8n Tutorial for Beginners: How to Build AI Automations for FREE (Step-by-Step)

·19:15·541.5K views·18 min saved

• n8n is an open-source automation tool that offers more flexibility and an AI focus compared to platforms like Zapier. • Self-hosting n8n on a VPS is a cost-effective workaround to avoid subscription fees, potentially saving 70-80% compared to n8n's cloud pricing. • The tutorial demonstrates setting up a workflow that triggers on form submission, appends data to a Google Sheet, filters entries based on occupation (e.g., excluding "student"), and sends different Gmail notifications for "engineer" and "doctor" leads. • n8n allows users to import pre-built templates from their website to expedite automation creation, with examples including AI-powered short-form video generators using OpenAI, Flux, Cling, and 11 Labs. • To connect services like OpenAI or Google Sheets, users must create API keys and add them as credentials within n8n, with OpenAI requiring a minimum $5 credit to generate a test key. • The platform utilizes a visual workflow builder where users can add triggers, actions, filters, switches, and merge nodes to construct automated processes.

I'll never use n8n the same......17:25
NetworkChuckNetworkChuck

I'll never use n8n the same......

·17:25·469.5K views·16 min saved

• The core innovation is integrating n8n workflows with Claude Code (or similar AI terminal tools like Gemini CLI) via SSH to execute AI agents and skills, unlocking powerful automation capabilities. • To achieve this integration, you need an n8n instance, an AI terminal tool (like Claude Code), and coffee; Claude Code requires a pro subscription, while Gemini CLI is free with limits. • Self-hosting n8n on a VPS is recommended for easier setup and cost-effectiveness, especially with current sales on hosting platforms. • The connection is established using n8n's SSH node to log into a server where the AI terminal tool is installed, enabling n8n to send commands and receive AI-generated responses. • This integration provides context by allowing the AI to access local directories and files, acting similarly to connecting n8n to the full ChatGPT interface with memory. • The system supports maintaining conversational context through session IDs, allowing for multi-turn interactions with the AI within n8n workflows, demonstrated through a Slack integration where users can have extended conversations with Claude Code. • This powerful combination enables n8n to act as an orchestrator for AI agents deployed by Claude Code, allowing for complex tasks like network diagnostics and agent-based comparisons that would be difficult to build directly within n8n.

n8n Masterclass: Build AI Agents & Automate Workflows (Beginner to Pro)1:31:43
Nate Herk | AI AutomationNate Herk | AI Automation

n8n Masterclass: Build AI Agents & Automate Workflows (Beginner to Pro)

·1:31:43·460.1K views·91 min saved

• n8n is a low-code, no-code automation tool that allows users to build workflows by dragging and dropping nodes, making automation accessible to individuals without extensive programming knowledge. • The platform offers over 300 built-in integrations and the flexibility to connect to almost any tool via APIs or webhooks, enabling the creation of sophisticated automations. • n8n provides two hosting options: self-hosted, offering full control and customization but requiring technical maintenance, and cloud-hosted, which is managed by n8n for simplicity and ease of use. • Workflows in n8n are comprised of nodes (individual steps or actions) and are executed as "executions" when triggered, which can be manual, scheduled, or event-based. • The masterclass demonstrates building an automated customer order processing workflow using Google Sheets and OpenAI to summarize orders and send email notifications via Gmail. • It also covers Retrieval Augmented Generation (RAG) and vector databases (like Pinecone) for building AI agents that can query specific documents, such as a Nike earnings PDF, by converting text into searchable vector data. • n8n facilitates building AI agents that can utilize various tools, including custom workflows and external services like Wikipedia or a calculator, to perform tasks and respond to user queries. • The tutorial emphasizes best practices for workflow optimization, including organization, reusability through sub-workflows, robust error handling, and scalability, to create efficient and maintainable automations.

Créer un agent IA avec n8n — Formation complète43:02
Shubham SHARMAShubham SHARMA

Créer un agent IA avec n8n — Formation complète

·43:02·447.9K views·42 min saved

• The video demonstrates how to create AI agents using n8n, distinguishing them from traditional automations by their autonomy and ability to connect with various tools and services. • AI agents, unlike traditional automations which follow predefined scripts, are given an objective and a set of tools, enabling them to make decisions and adapt to context autonomously. • n8n offers a specific "agent" module that allows integration with LLMs and external tools, a feature that sets it apart from other automation platforms like Make and Zapier. • To configure an agent in n8n, five essential components are required: a communication method, an LLM (like GPT), tools, memory, and a prompt that defines the agent's role and scope. • The video highlights the creation of "sub-agents" to manage complexity, allowing a master agent to delegate tasks to specialized agents (e.g., Calendar Agent, Notion Agent, Trivecart Agent), making workflows more organized and visually cleaner. • Key pitfalls to avoid when building AI agents include improper naming of tools and sub-agents, neglecting to provide clear instructions in prompts, not utilizing audio input for efficiency, failing to consult documentation, and skipping thorough testing before deploying.

Complete n8n Masterclass: Build Al Agents & Automate Workflows (Zero to Hero)7:31:18
Mayank AggarwalMayank Aggarwal

Complete n8n Masterclass: Build Al Agents & Automate Workflows (Zero to Hero)

·7:31:18·442.9K views·450 min saved

• The video provides a masterclass on building AI agents and automating workflows using n8n, covering the transition from basic automation to more complex AI-driven processes. • It clearly differentiates between automation (rule-based, deterministic tasks) and AI agents (adaptive, decision-making entities that can use tools and memory). • The core value lies in demonstrating how to build practical workflows, starting with simple automations like sending emails via Gmail and appending data to Google Sheets, and progressing to integrating AI models for tasks like email drafting and content generation. • A significant portion of the content is dedicated to explaining the practical aspects of n8n, including setting up accounts, navigating the UI, understanding nodes, and utilizing features like JSON for data exchange and expression mapping. • The masterclass also covers essential concepts for building AI agents, such as the role of LLMs, memory, tools (like Google Calendar and Task APIs), and the importance of structured output for AI responses, including practical examples of building a Telegram bot and a doubt-solving assistant. • The video also touches upon hosting n8n locally using Docker and on cloud platforms like Render, emphasizing the flexibility and accessibility of the tool for both beginners and professionals.

Master 80% of n8n in 36 Minutes36:23
FuturepediaFuturepedia

Master 80% of n8n in 36 Minutes

·36:23·423.1K views·35 min saved

• The core value of the video is to demonstrate how to build automations and AI agents using n8n, a node-based automation platform, with a focus on practical application and customization. • n8n allows users to build two types of workflows: automations, which are fixed sequences, and agents, which are dynamic and can reason and make decisions. • The video walks through building three progressively complex workflows: 1. A daily weather report emailed to the user using schedule, OpenWeather, and Gmail nodes. 2. A sponsorship inquiry intake system that routes requests based on budget, sends automated email responses, and logs data to a Google Sheet using form submission, a switch node, Gmail, and Google Sheets nodes. 3. A customizable AI personal assistant agent that can manage calendar, email, and documents, and interact with tools like Reddit and YouTube, using chat, AI agent, and various tool nodes (Google Calendar, Gmail, Google Sheets, HTTP requests, and calling other n8n workflows). • Key n8n concepts explained include node types (triggers, actions, logic, AI agent, HTTP request), credentials setup for various services, using the canvas (editor, executions, broom tool, zoom), understanding JSON data format, and the distinction between automations and agents. • The video emphasizes practical implementation, suggesting users leverage ChatGPT for generating prompts, debugging errors, and understanding JSON, and highlights the use of n8n templates for faster development. • For self-hosting n8n, using a VPS with a provider like Hostinger is presented as an easier, cost-effective alternative to the cloud version, with a one-click installation template for n8n.

N8N Full Tutorial: Building AI Agents in 2025 for Beginners!31:43
AI FoundationsAI Foundations

N8N Full Tutorial: Building AI Agents in 2025 for Beginners!

·31:43·413.1K views·31 min saved

• The core concept is building "agentic systems" in n8n, which involve AI agents that dynamically decide which tools to use to accomplish user requests, as opposed to traditional workflows with predefined outputs. • An AI agent in n8n is essentially a large language model with access to various tools, and these agents can even be nested within other agents. • The tutorial demonstrates building an AI agent by starting with a "Chat Message" trigger and then adding an "AI Agent" node, powered by a chosen language model (e.g., OpenAI's GPT-4o), with credentials managed via API keys. • To enable conversational context, "Window Buffer Memory" is added to the AI agent, allowing it to retain a specified number of past interactions for context. • Tools can be integrated into the AI agent, such as connecting to Airtable. The AI agent can be configured to search Airtable for inventory data based on natural language queries and to update inventory quantities using dynamic expressions mapped to Airtable fields. • The system can be further expanded by creating specific AI agents for particular tasks (e.g., an "inventory agent") and enabling them to be called by other workflows, effectively creating a modular and interconnected agentic ecosystem.

How I'd Teach a 10 Year Old to Build AI Agents (No Code, n8n)19:27
Nate Herk | AI AutomationNate Herk | AI Automation

How I'd Teach a 10 Year Old to Build AI Agents (No Code, n8n)

·19:27·378.4K views·18 min saved

• An AI agent consists of a "brain" (LLM like ChatGPT), memory for context, and instructions (system prompt). • Tools are integrated with the AI agent to enable actions beyond just responding, such as sending emails or retrieving data. • The `n8n` platform allows building AI agents by connecting components like a chat trigger, an AI agent node with a chat model (e.g., OpenAI), memory (window buffer), and tools (e.g., Gmail, Google Sheets). • To send dynamic emails, parameters like "To," "Subject," and "Message" in the Gmail tool can be set as expressions that extract information from the user's input using keys (e.g., `email recipient`, `subject`, `email body`). • The system message is crucial for defining the agent's role, capabilities, and how it should use its tools; it can be dynamically generated or refined using an LLM. • AI agents can be integrated with external data sources like Google Sheets to retrieve information (e.g., contact details) to perform actions, allowing for more complex workflows like sending emails to contacts identified from a database rather than explicitly named in the prompt.

Don't Sell N8N Workflows, Sell AI Infrastructure - Here's How (Massive Opportunity)14:08
Ethan NelsonEthan Nelson

Don't Sell N8N Workflows, Sell AI Infrastructure - Here's How (Massive Opportunity)

·14:08·371.8K views·13 min saved

• The core value is to sell comprehensive AI infrastructure and applications, not just single-use case automations or AI agents, as clients prioritize demonstrable results and user experience over the underlying AI technology. • Instead of directly selling n8n or Make.com workflows, package them into custom dashboards and user interfaces using tools like Lovable or Cursor to create a "white glove experience" that clients will pay significantly more for. • Target medium-sized businesses (likely with over 25 employees and at least $100k monthly recurring revenue) that have the financial capacity and are less risk-averse to invest in AI systems that promise significant growth. • Demonstrate value by reverse-engineering client goals into concrete metrics, such as the number of emails to send, sales calls generated, and warm leads acquired, to justify monthly fees ranging from $5,000 to $10,000. • Build trust and secure sales by offering guarantees, such as money back if results aren't seen within 30 days, and leveraging successful case studies or even running systems for free initially to gather proof. • The strategy involves building the backend logic with tools like n8n or Python, and then creating a user-facing front-end dashboard or even a full SaaS product that showcases the system's performance and insights in real-time.

Free Course AI Automation for Beginners | Free N8N Tutorial in Hindi35:21
Learn and Earn with Pavan AgrawalLearn and Earn with Pavan Agrawal

Free Course AI Automation for Beginners | Free N8N Tutorial in Hindi

·35:21·362.1K views·34 min saved

• The video explains AI automation and AI agents as a skill with a reported 18,347% increase in demand on platforms like Fiverr. • It demonstrates how to use n8n, a no-code automation tool, for building AI workflows, showcasing a free setup using Hostinger. • A basic two-step automation workflow is demonstrated: triggering when a Google Form is submitted, then sending automated emails to the customer and a team member. • An intermediate workflow is explained where ChatGPT is used to generate dummy sales data and then create a complete n8n workflow, including generating a JSON file for import and setting up email reports. • The video introduces the concept of AI agents by integrating the Gemini LLM into an n8n workflow to process sales data, make decisions, and generate a detailed summary report for a manager. • A mobile app creation example is briefly shown, built using AI and n8n, emphasizing that advanced workflows can be learned with continued practice and engagement with the content.

How to Make AI Agents Without Coding Full Course (n8n + OpenAI) -  اردو / हिंदी1:16:00
Nafay 3DNafay 3D

How to Make AI Agents Without Coding Full Course (n8n + OpenAI) - اردو / हिंदी

·1:16:00·354.6K views·75 min saved

• This course teaches how to build AI agents without coding using n8n and OpenAI's API. • Three real-life AI agent projects are demonstrated: an inventory management system, an email auto-responder, and a RAG-based data analyst for PDFs. • The inventory management system allows users to track stock levels, add items, and update quantities via a chat interface. • The email auto-responder classifies incoming emails (e.g., sponsorship, high priority), generates draft responses using AI, and optionally saves them as drafts. • The RAG-based data analyst uses Pinecone vector store and OpenAI to answer questions and perform analysis based on uploaded PDF documents. • The course emphasizes practical, project-based learning and highlights the potential for freelancing with these AI agent skills.

How to INSTANTLY Build AI Agents in N8N Using Claude13:46
Nolan Harper | Ai Automation Nolan Harper | Ai Automation

How to INSTANTLY Build AI Agents in N8N Using Claude

·13:46·348.2K views·13 min saved

• Claude, specifically Claude 4 Opus, can be used to generate n8n workflow JSON files by leveraging its coding and reasoning capabilities. • To build effective n8n workflows with Claude, it's crucial to provide it with comprehensive knowledge about n8n, including its readme files, node functionalities, and integrations. • The process involves first feeding Claude the n8n documentation to establish context, then prompting Claude to provide a framework for creating effective prompts for workflow building. • The generated prompt framework is then used in a separate LLM (like ChatGPT in the video) to create a specific prompt for the desired n8n workflow, which is then fed back into Claude Opus for JSON generation. • While Claude can generate the basic structure of an n8n workflow, manual configuration and troubleshooting of nodes, API connections, and data mapping are still required after importing the generated JSON. • Claude's AI agent capabilities for n8n are presented as a powerful starting point for workflow automation, significantly reducing the initial development time, but not yet fully replacing human expertise for complex or nuanced automations.

What is n8n in Hindi. Fastest and easiest self deployment too19:25
Chai aur CodeChai aur Code

What is n8n in Hindi. Fastest and easiest self deployment too

·19:25·343.6K views·18 min saved

• N8N is an open-source workflow automation tool that combines the visual graph-based logic of LangGraph with a user interface, allowing users to automate daily tasks using AI. • It enables the creation of complex workflows by defining nodes (tasks) and edges (connections), similar to data structures taught in DSA, but applied practically for real-world automation. • A practical example demonstrated involves using N8N to automate the process of taking new YouTube short ideas from a Google Sheet, refining them with OpenAI, categorizing them, and sending them via Slack to an editor and an audio GPT for voice conversion. • N8N offers a "WordPress model" for pricing, where the software itself is free if self-hosted, with costs incurred for hosting and services; a hosted version is also available for a fee. • The video provides a step-by-step guide on the easiest way to self-deploy N8N using Hosting.com's KVM VPS, which includes pre-installed Ubuntu and N8N, simplifying the process significantly compared to manual Docker installations. • N8N boasts extensive integrations with various AI models (like Anthropic), databases, communication tools (Slack, Discord), and productivity services (Google Sheets, Notion, Jira), making it a versatile platform for automation.

The AI Agent Tutorial That Should've Been Your First (no code)16:58
Jeff SuJeff Su

The AI Agent Tutorial That Should've Been Your First (no code)

·16:58·333.6K views·16 min saved

• The core of building an AI agent on N8N involves three main steps: assigning a "brain" (chat model + memory), granting access to tools (like Slack, Google Sheets, Notion), and defining a "brain stem" (system prompt) to govern tool usage. • To set up the "brain," you'll connect an OpenAI chat model and a Simple Memory module within N8N, requiring an OpenAI API key obtained from platform.openai.com. • For tool integration, the tutorial demonstrates connecting to Google Sheets by creating a new sheet, defining columns (expense, charge date, cadence, cost, status), and configuring the AI agent's "add entry" tool to append rows based on AI-determined values. • The "brain stem" or system prompt is crucial for controlling the AI agent's behavior; it can be generated by providing ChatGPT with a screenshot of the N8N workflow and the workflow's JSON export, along with a specific prompt requesting instructions for subscription tracking. • Troubleshooting and refinement of the system prompt are demonstrated, such as ensuring the agent always asks for confirmation before executing actions and dynamically using the message timestamp for the charge date by dragging the timestamp variable into the AI agent node. • The tutorial emphasizes that while pre-built AI tools exist, understanding the building blocks of AI agents, as shown in this no-code N8N tutorial, is essential for custom and secure AI implementations.

How I Sold These 4 AI Agents for $23,000 (as a beginner)14:18
Nate Herk | AI AutomationNate Herk | AI Automation

How I Sold These 4 AI Agents for $23,000 (as a beginner)

·14:18·317.7K views·13 min saved

• The author sold four AI agents to businesses, totaling $23,000, starting as a beginner. • The first agent, a personalized outreach message generator, was sold for $1,650, with the client finding the author through YouTube content. • The second agent, a sales agent that handled customer inquiries, generated quotes, and updated CRMs, was sold for $4,000 by the author's newly formed AI business, True Horizon AI. • The third agent, a Slack-based personal assistant for internal data access and task management, was sold for $6,000, with pricing based more on complexity than direct ROI. • The most expensive agent, an AI concierge for member support and daily business tasks, was sold for $12,000, leveraging new technology like MCP servers. • The author outlines a seven-step roadmap for selling AI agents: diagnose the problem and prescribe a solution, use simple tools, price based on ROI, package and anchor offers, avoid traps like underpricing and under-scoping, prototype and QA, and build long-term partnerships.

n8n Beginner Course (2/9) - Introduction to APIs and Webhooks15:30
n8nn8n

n8n Beginner Course (2/9) - Introduction to APIs and Webhooks

·15:30·294.1K views·15 min saved

• An API (Application Programming Interface) acts as an intermediary, like a waiter in a restaurant, allowing developers to interact with an application's services without needing to understand its internal complexity. • An API request consists of a URL (the resource location), a Method (GET for retrieving data, POST for sending data, and others like DELETE, PUT, PATCH), Headers (providing context like desired response format, e.g., "accept: application/json"), and an optional Body (containing data for POST requests). • HTTP requests utilize credentials (API keys, OAuth) for authentication, ensuring authorized access to an application's services; these can be sent via query parameters or headers. • An API response includes a three-digit Status Code (200 for success, 401 for unauthorized, 404 for not found, 500 for server error), Headers (providing response context like content length), and an optional Body (containing the requested data, often in JSON format). • Webhooks, often referred to as "reverse APIs," allow an application to proactively send data to another application when a specific event occurs, eliminating the need for constant polling. • To set up a webhook, a URL is required to specify where the data should be sent, and tools like n8n can then receive and process this incoming information to trigger workflows.

How to Create Your Own Stock-Analysis AI Agent (n8n Template)12:33
Website LearnersWebsite Learners

How to Create Your Own Stock-Analysis AI Agent (n8n Template)

·12:33·293.3K views·12 min saved

• The video demonstrates how to create a stock analysis AI agent that integrates Telegram, OpenAI, and other APIs using the n8n automation platform, requiring no coding. • Setting up n8n involves choosing a hosting option: local (free, complex), WSK (low cost, $14/month), or n8n cloud (more expensive, limited features). The tutorial uses WSK hosting for unlimited workflow executions. • To build the agent, users import a pre-made n8n workflow template for technical analysis. • Key setup steps include connecting Telegram by creating a bot via BotFather to obtain an API key and chat ID, and connecting OpenAI by generating a secret API key from their platform. • The sub-workflow requires connecting 12data for stock exchange information and ChartImg for generating stock charts, both needing API keys obtained from their respective platforms. • The final step involves inputting the Telegram chat ID into the n8n workflow to ensure replies are sent to the correct user. • Once configured, the AI agent can analyze stocks by receiving a stock symbol and optional timeframe via Telegram, providing a live chart and AI-powered breakdown of trends and patterns.

Building AI Agents: Chat Trigger, Memory, and System/User Messages Explained [Part 1]20:16
n8nn8n

Building AI Agents: Chat Trigger, Memory, and System/User Messages Explained [Part 1]

·20:16·291.3K views·19 min saved

• An AI agent builds upon a Large Language Model (LLM) by adding goal-oriented functionality, the ability to leverage tools, and task completion capabilities, distinguishing it from an LLM's text-in, text-out function. • n8n, a workflow automation tool, allows for the integration of AI agents into broader workflows, enabling a combination of deterministic steps (traditional programming) with the natural language processing power of LLMs. • The Chat Trigger in n8n allows users to interact with an AI agent via a UI, initiating workflows and collecting user input for processing. • When configuring an AI agent in n8n, essential components include a Chat Model (the LLM to be used, e.g., OpenAI's GPT models) and credentials (like an API key) for authentication. • Prompt engineering, the art of crafting user and system messages, is crucial for AI agent efficacy; the user message defines the task, while the system message dictates the agent's role, tone, style, and boundaries. • System messages can incorporate best practices such as defining the AI's role ("You are a helpful assistant"), specifying style ("Be concise and avoid jargon"), and setting boundaries ("Don't hallucinate," "Ask clarifying questions"), and can also include static context like the current date and time using n8n expressions. • Memory, specifically Window Buffer Memory in n8n, provides AI agents with statefulness, allowing them to recall context from previous messages within a conversation by managing a session ID and a defined context window length. • After building and testing an AI agent in n8n, workflows can be published, making them accessible via a public URL generated by the Chat Trigger, allowing for deployment as a custom chatbot. • For debugging and iteration, n8n allows users to copy data from production or test executions back into the editor, providing insight into the agent's state and logs at the time of the run.

I Built a 24/7 Viral Shorts Machine with No-Code (free n8n template)31:23
Nate Herk | AI AutomationNate Herk | AI Automation

I Built a 24/7 Viral Shorts Machine with No-Code (free n8n template)

·31:23·289.5K views·30 min saved

• The video details a five-step no-code system built with n8n to automate the creation and posting of viral Shorts, using a Google Sheet as the data source. • The system utilizes an AI agent (GPT 4.1 via Open Router) to generate image, video, and audio prompts from brand data. • Image generation is handled by Flux Pro V1.1 Ultra via FAL AI, video generation by Cling via FAL AI, and unique sound effects by 11 Labs. • Createmate is used to combine video and audio elements into a final video file, with Botato then used for auto-posting to Instagram, TikTok, and YouTube. • The creator provides a free n8n template and a setup guide, enabling users to replicate the system within 10 minutes by connecting their own API keys for services like FAL, 11 Labs, and Botato. • A cost breakdown estimates the per-run cost to be slightly over $2, primarily for image and video generation, with additional monthly costs for Createmate and optional Botato subscription.

10 Insane AI Agent Use Cases in n8n! (steal these)16:30
Jono CatliffJono Catliff

10 Insane AI Agent Use Cases in n8n! (steal these)

·16:30·279.3K views·16 min saved

• Connect ChatGPT to n8n AI agents to automate tasks like creating Google Calendar events by interacting directly with ChatGPT. • Utilize AI agents for web scraping to automatically extract contact information (emails, phone numbers) from platforms like Google Maps, Apollo, or social media, and populate into Google Sheets. • Employ AI agents as outbound voice callers to automate phone calls for tasks like booking appointments, though the technology is noted as being in its early stages and may not match human caller performance for complex interactions. • Implement an AI agent for project inbox management that classifies incoming emails (promotional, social, personal, sales, recruitment), enabling automatic labeling, deletion from inbox, forwarding invoices, or sending Slack notifications. • Process PDF invoices or image receipts by extracting line items and sending the data to a Google Sheet using an AI agent that performs OCR and data extraction. • Leverage an AI agent as a personal assistant accessible via Telegram to manage tasks like updating to-do lists, making calls, manipulating calendars, handling emails, or posting on social media, potentially reducing the need for a human assistant.

இதலாம் Automate பண்ணலாமா? | n8n Automation Explained | Arivi15:23
Arivi by HCL GUVIArivi by HCL GUVI

இதலாம் Automate பண்ணலாமா? | n8n Automation Explained | Arivi

·15:23·255.6K views·14 min saved

• The video explains automation using the n8n tool, highlighting its ability to streamline repetitive tasks without requiring coding knowledge. • Automation can be applied to daily life, such as ordering groceries or sending goodnight messages, saving time and effort. • n8n allows users to create "workflows" consisting of "nodes" that trigger actions, such as scheduling tasks at specific times. • To automate YouTube video uploads, one can set up a workflow that schedules daily uploads, fetches video links and music from a spreadsheet, aggregates them, adds text overlays, generates the video, and then uploads it to YouTube. • For more complex business automation, tools like Microsoft Power Automate and Zapier are mentioned, with Robotic Process Automation (RPA) engineers being a growing profession. • While n8n has a paid version, a free community edition can be run locally on a computer using Docker, though it requires self-hosting.

n8n Tutorial for Beginners - Build Your First Free AI Agent23:10
Kevin StratvertKevin Stratvert

n8n Tutorial for Beginners - Build Your First Free AI Agent

·23:10·251.2K views·22 min saved

• The video demonstrates how to build a free AI agent using n8n, a workflow automation tool, that can manage overdue invoices and send payment reminders. • An AI agent is defined by its reasoning skills (figuring out how to achieve a goal, not just following explicit steps), tool access (ability to perform actions like sending emails), and memory (maintaining context). • To run n8n for free, users need to install Docker Desktop and then use specific Docker commands in the command prompt: `docker volume create n8n_data` and `docker run -wizard -p 5678:5678 -v n8n_data:/home/node/.n8n n8nio/n8n`. • The AI agent is configured with a chat model (Gemini 2.5 Flash Preview 617 for free usage), simple memory, and tools such as QuickBooks Online for fetching invoices and a Gmail integration for sending emails. • To enable the agent to dynamically filter for overdue invoices and compose personalized reminder emails, specific instructions are provided to the AI model via a prompt, often generated with the assistance of ChatGPT, and by using JavaScript to dynamically insert the current date. • A "human in the loop" approval process is integrated using Discord, allowing for manual review of emails before sending, ensuring more professional and accurate communication. • The final workflow involves scheduling, fetching overdue invoices, generating email drafts for approval, sending emails only upon approval, and logging the outcomes.

N8N Tutorial: Build N8N Whatsapp Chatbot! (Easy Method)14:47
Productive DudeProductive Dude

N8N Tutorial: Build N8N Whatsapp Chatbot! (Easy Method)

·14:47·239.6K views·14 min saved

• To build an N8N WhatsApp chatbot, use the N8N Cloud account for better API compatibility with chat applications like WhatsApp, as local setups can encounter issues without proper security configurations. • Obtain WhatsApp Business Cloud API credentials by creating an app on Facebook for Developers (business.face.com), linking it to your Facebook Business Portfolio, and then retrieving the App ID and App Secret for N8N. • Connect your OpenAI API key to the N8N AI agent by creating a new credential on platform.openai.com, adding funds for testing, generating a secret key, and pasting it into N8N. • Configure WhatsApp Send Message credentials in N8N by obtaining an Access Token and Business Account ID from your Facebook Business Manager under the WhatsApp section, and then select your test number as the sender and your phone number as the recipient. • To enable conversation memory for the N8N WhatsApp chatbot, set the session ID in the Window Buffer Memory node to an expression that references the name of the "chat received" trigger node (e.g., `{{$json["chat received"]}}`). • To ensure the chatbot only responds to actual messages, add an "If" node that checks if the "body" string exists before proceeding to the AI agent.

How to Build a WhatsApp Agent with n8n (credential tutorial)7:04
Nate Herk | AI AutomationNate Herk | AI Automation

How to Build a WhatsApp Agent with n8n (credential tutorial)

·7:04·236.0K views·6 min saved

• To build a WhatsApp agent with n8n, first navigate to business.facebook.com to create a Facebook Business Portfolio and confirm your account with a phone number or credit card. • Create a new app by selecting "Other" for the use case, continuing, and choosing "Business" as the app type to enable WhatsApp integration. • In the n8n workflow, set up a WhatsApp trigger by creating a credential using the App ID and App Secret obtained from the Facebook developer dashboard (Apps > Basic settings). • To send messages back from the AI agent via WhatsApp, a separate credential is required in n8n for the WhatsApp Business Cloud "Send Message" node, using an Access Token and Business Account ID. • Obtain the Access Token and Business Account ID by going to Meta Suite > WhatsApp > API Setup, using the provided test number, and generating the token after granting permissions. • Configure the AI agent node in n8n to use the incoming WhatsApp message text as its input and ensure the "Send Message" node is configured to send the AI agent's output back to the user's WhatsApp number. • Be mindful that continuously running the workflow will incur costs if using paid AI models, as each message processed by the agent consumes credits.

How to Automate ANYTHING with AI (N8N Tutorial)28:45
Varun MayyaVarun Mayya

How to Automate ANYTHING with AI (N8N Tutorial)

·28:45·235.0K views·28 min saved

• N8N is a visual workflow automation platform that allows users to connect apps, services, and APIs by dragging and dropping nodes onto a canvas, enabling non-coders to build and understand complex automation processes. • The tutorial demonstrates setting up a self-hosted N8N instance on Hostinger using the KVM2 plan for approximately 549 rupees per month, which allows for unlimited workflow execution, contrasting with cloud-based limitations. • A practical workflow is shown to automate meeting scheduling: a Telegram trigger captures messages (text or audio), a switch node differentiates between message types, text messages are processed directly, while audio messages are transcribed using Google Gemini's 2.5 Flash API. • An AI agent, specifically configured with a system message to act as a meeting scheduler and a structured output parser, extracts details like start time, end time, and attendees from the transcribed or direct text, which are then used to create a Google Calendar event. • The process highlights potential pitfalls, such as inaccurate audio transcription leading to malformed email addresses and the importance of debugging when nodes fail, particularly noting the need for exact email formats for calendar event creation. • The video showcases a more complex workflow involving processing Reddit posts: extracting post data, using a JavaScript code node (with AI assistance from Claude) to filter comments, merging post and comment data, generating an Instagram reel script with an AI agent, converting text to speech via 11 Labs, creating a video with an AI avatar on Hen (requiring HTTP requests to their API), uploading to YouTube, and finally sending a completion notification via Telegram. • A key takeaway emphasizes the strategic use of automation, advising against over-automating content creation to maintain quality and engagement, and suggests that while automation can reduce the need for large media teams, human oversight and creativity remain crucial. • The tutorial explains how to obtain API keys and credentials for services like Telegram (via BotFather), Google Gemini (via Google AI Studio), and Google Calendar, noting that navigating different platforms' API documentation is a necessary skill for integrating services within N8N. • N8N offers a vast library of pre-built community workflows (over 5,469) that can be imported via JSON, allowing users to quickly implement complex automations by studying and modifying existing templates.

Automate Tasks with Pre-Built AI Agents | n8n Tutorial 🔥15:47
CodeWithHarryCodeWithHarry

Automate Tasks with Pre-Built AI Agents | n8n Tutorial 🔥

·15:47·223.2K views·15 min saved

• The video demonstrates how to automate tasks using pre-built AI agents with n8n, focusing on self-hosting the tool on a VPS. • It guides viewers through setting up a VPS (using Hostinger as an example) and installing n8n, highlighting its open-source nature and visual node-based interface for creating workflows. • The tutorial showcases using pre-built n8n templates, specifically an AI agent chat workflow, by integrating it with OpenAI's API and SerpApi for web searches. • It explains the process of obtaining API keys for services like OpenAI and SerpApi, noting that while OpenAI requires payment beyond a certain usage, SerpApi offers a free tier with 100 searches per month. • A custom workflow example is provided: setting up a scheduled task to generate a computer science-related joke using OpenAI and send it via email, requiring SMTP credentials from services like Mailgun or SendGrid. • The video emphasizes the flexibility of n8n, allowing users to build workflows from scratch or utilize existing templates, and recommends self-hosting the open-source version on a personal VPS for cost-effectiveness and customization.

n8n Beginner Course (3/9) - What are nodes?13:19
n8nn8n

n8n Beginner Course (3/9) - What are nodes?

·13:19·221.4K views·12 min saved

• Nodes are the fundamental building blocks of n8n workflows, functioning as the "atoms" that are connected sequentially to create automated processes. • There are three main categories of n8n nodes: entry points (triggers) to initiate workflows, functions to process and transform data, and exit points (apps) to interact with external services. • When adding a node, you can search by name or category, and often select a specific "operation" or action the node should perform (e.g., 'append row' or 'get rows' for Google Sheets). • Node settings are accessed by double-clicking. "Parameters" are specific to the node's operation (e.g., selecting a spreadsheet and sheet), while "advanced settings" (like notes and execution options) are node-independent. • Credentials are crucial for authenticating with external applications and are saved at the instance level for efficiency and security. • Nodes display input and output data to the left and right of their parameters, offering views in table, JSON, and schema formats to help understand data flow.

Build Anything with Lovable + n8n AI Agents (beginner's guide)20:15
Nate Herk | AI AutomationNate Herk | AI Automation

Build Anything with Lovable + n8n AI Agents (beginner's guide)

·20:15·211.1K views·19 min saved

• Lovable allows users to create web applications by describing them in natural language, generating code and a preview interface in seconds. • The architecture integrates Lovable for frontend development with n8n for backend automation, enabling data flow between the user interface and external services. • n8n workflows can be triggered by webhooks from Lovable, processing user input with AI agents to perform actions like generating custom excuses. • Users can input a problem and select a tone (realistic, funny, ridiculous, outrageous) for the AI-generated excuse. • The system includes a dynamic leveling system where users gain points for submitting problems, with visual progression shown on the interface. • Once built, Lovable applications can be published to a custom domain or a provided subdomain, with options for mobile and desktop previews.

How to Build AI Agents in n8n for Beginners! (Full n8n Guide)50:00
AI FoundationsAI Foundations

How to Build AI Agents in n8n for Beginners! (Full n8n Guide)

·50:00·199.4K views·49 min saved

• The core of building AI agents in n8n begins with understanding that an agent is an AI-integrated automation, allowing for dynamic and adaptable workflows unlike predefined automations. • Before building agents, prioritize learning prompt engineering to effectively communicate with and instruct large language models, which power AI agents. • n8n utilizes a node-based system where workflows consist of trigger nodes (to start automation), action nodes (to perform tasks in external apps), utility nodes (for data transformation), code nodes (for custom scripting), and agent nodes (to integrate AI). • To build an AI agent, connect a chat model (like OpenAI, requiring a separate API key from the developer platform) and optionally add memory for context and tools (like HTTP requests or Gmail actions) to grant the agent capabilities. • An example agent is demonstrated, where it can access a weather API (via an HTTP request tool) to retrieve data and then use a Gmail tool to draft and send custom, context-aware email reports based on user prompts. • AI agents in n8n can interact with tools to perform actions and retrieve data, use memory to maintain conversation context, and even call other n8n workflows, enabling complex background processes triggered by conversational inputs.

How to Build an AI Agent Using n8n (No Code!) | Ft. @TheAIDude-Tamil21:43
Arivi by HCL GUVIArivi by HCL GUVI

How to Build an AI Agent Using n8n (No Code!) | Ft. @TheAIDude-Tamil

·21:43·196.9K views·21 min saved

• The video demonstrates how to build an AI agent for scheduling appointments using n8n, a no-code automation tool, which simplifies the process significantly. • AI agents represent an advanced level of AI that can not only generate outputs like text or images but also perform actions by reasoning and planning, much like a human. • The core components of an AI agent are perception (understanding input), brain (planning and reasoning, often powered by LLMs like GPT), and actions (executing tasks through tools like calendars or email). • The tutorial showcases building an agent that schedules meetings by integrating a chat trigger, an AI model (like GPT-4 mini), a simple memory, and Google Calendar, all within n8n. • The presenter emphasizes that developing these AI agents requires no coding and can be achieved by copying and deploying existing configurations. • A key takeaway is the "React" framework (Reasoning and Action) which guides the AI agent's prompt structure for task execution. • The video previews a more complex future topic: multi-agent systems where multiple AI agents collaborate, potentially automating entire software teams, which is presented as a significant reason for job displacement concerns.

N8N Full Course | Learn to Build & Earn with AI Automations2:23:13
WsCube TechWsCube Tech

N8N Full Course | Learn to Build & Earn with AI Automations

·2:23:13·195.5K views·135 min saved

Introduction to N8N & AI Automation The video offers a free, beginner-to-advanced N8N course covering AI agents and automation. N8N is highlighted as a powerful no-code automation platform, showing significant growth on Google Trends compared to competitors like Zapier and Make. The name "N8N" is derived from "Node to Node" (N - eight letters - N). N8N's core philosophy is based on visual programming, node-based architecture, and flow-based processing, allowing data to flow from left to right. Understanding N8N Workflow Fundamentals A workflow is the "soul" of N8N, representing a collection of connected nodes that form a complete automation journey from start to end. Workflows consist of three main parts: Entry Point (Trigger), Processing Chain, and End Point (Output/Exit). Trigger Nodes initiate a workflow, like a "kick start" for a scooter; examples include Webhook Triggers (data arrival), Schedule Triggers (time-based), Form Submission Triggers, and Email Triggers. Processing Chain Nodes perform actions like Data Transformation, Logic/Conditional operations (if-else), API calls, Validation, and Filtering. End Point Nodes deliver the final output or result of the automation. Workflow statuses include Draft, Saved, Active, Paused, and Error. Execution types are Manual (user-triggered), Automatic (scheduled), and Test (for debugging). Deep Dive into AI Agents An AI Agent automates daily, autonomous tasks and has the ability to make decisions based on context, unlike simpler automations. Key components of an AI Agent are: Brain (LLMs): Large Language Models like GPT, Claude, Gemini, Sonar, Grok, enabling intelligent processing. Memory: Allows the AI to remember past conversations and context (e.g., in ChatGPT). Without memory, the agent "forgets" previous interactions. Tools: Enables access and interaction with external services like Gmail, Google Sheets, Google Docs. Trigger: Initiates the AI agent, just like a workflow. N8N Node Anatomy and Types Nodes are the "muscles or organs" of N8N, serving as building blocks for workflows, where data flows from one block to another. Three main types of nodes are: Function Nodes: Start the flow and handle initial triggers (e.g., Webhook Trigger, Schedule Trigger). Regular Nodes: Perform main actions like communication (Gmail, Slack), data storage (Google Sheets, Google Drive), CRM/business operations (Salesforce, Shopify), and utility functions (PDF generation, data manipulation). Core Nodes: Handle complex logic (if-else, conditional), data manipulation (JavaScript), flow control (Wait, Stop), and general utilities (Date/Time, HTML). Node Anatomy: Each node has an Input Connection Point (left, receives data), an Output Connection Point (right, sends data), and an Icon & Name for service identification. Status Indicators: Green (success), Red (error), Gray (not executed), Orange (running). Data Movement: N8N processes data as Input -> Processing -> Output, similar to raw vegetables -> cooking -> ready dish. Expression vs. Fixed: Expression allows for dynamic data (e.g., personalized emails), while Fixed uses constant parameters. Credentials, Authentication & Automation Types Credentials and Authentication: Required to connect N8N with external services. API Key: Used for services like ChatGPT, Gemini (often paid). N8N offers 100 free credits for Open AI APIs. OAuth / OAuth2: Secure method to connect third-party platforms (Google Sheets, Facebook) without directly storing passwords, requiring user consent and token-based authentication. Basic Authentication: Uses username and password. Custom Header Authentication: Requires authorization headers and bearer tokens for specific services (e.g., Telegram Bot). Automation Definition: Any repetitive task made automatic, with three components: Trigger, Condition & Process, and Action (Execution). Traditional Automation vs. AI Automation: Traditional: Follows fixed rules, predetermined responses, no learning capability (e.g., Zapier, Mailchimp). AI Automation: Intelligent decision-making, context understanding, learning capabilities (memory updates), and leverages NLP for better output. Automation vs. AI Automation vs. AI Agents: Automation: Rule-based, no learning, basic tools, simple complexity. AI Automation: Context understanding, limited learning, API/advanced tools, medium complexity. AI Agent: Autonomous tasks, continuous learning (brain + memory), advanced tools (including vector stores), high complexity. N8N Platform Walkthrough & Key Terminology Canvas: The main workspace where workflows and agents are designed. Templates: Pre-built workflows and AI agents available for free or paid use, helping users get started quickly. Workflows: The connected steps that execute an automation. Nodes: Individual blocks within a workflow, each with a specific action. Trigger Nodes: The starting point of any workflow. Expression: Used for dynamic data fields that change based on workflow input. Static vs. Dynamic Data: Static data is fixed, while dynamic data changes based on the workflow's context or input. Queue: The sequence in which workflow executions are processed. Execution: The actual running of a workflow from one node to another. Parallel Execution: Multiple tasks or workflows running simultaneously to speed up processing. Execution Log: A history of all workflow executions, showing steps and outcomes. Variables: Small data holders that can be reused throughout a workflow. OAuth Authentication: A secure method for third-party platform integration without direct password storage. Conditional Logic: Nodes that allow a workflow to follow different paths based on conditions (true/false). Loop: Repeating a set of actions multiple times. Webhook: A "gate" where an external system sends a request, triggering a workflow. Data Mapping: Configuring data fields within nodes, connecting inputs to outputs. Metadata: Extra information (e.g., timestamps) associated with data. Workflow Chaining: The output of one workflow becoming the input for another. Database Integration: Connecting N8N to databases like MySQL, PostgreSQL, or cloud storage (Google Drive, Dropbox). Data Transformation: Modifying or tweaking data within a workflow. Error Handling: Mechanisms to manage and resolve issues during execution. Project: An organizational container for multiple related workflows, credentials, and variables. Data Pinning: Temporarily locking data outputs for testing or reference. Evaluation: Comparing past and current workflow performance for optimization. Function Node: Allows custom JavaScript for data manipulation. Split and Merge: Dividing a workflow into parallel paths and then combining their results. Cron Job: Scheduling workflows to run at specific intervals (hourly, daily, weekly). Cluster Node: A group of nodes representing a main task within a workflow (e.g., AI agent for social media posting). Root Node/Sub Node: The main node and its subordinate nodes within a cluster. Custom Node: User-created nodes for specific functionalities. API (Application Programming Interface): Enables communication between different software systems. Real-time Workflow Execution: Workflows that run instantly and deliver immediate data. Workflow Optimization: Streamlining steps to achieve the same result with less processing. Retry Logic: Automatically re-attempting failed workflow executions. Timeout: Defining how long a node will wait for a response or completion. AI Memory: The ability of an AI agent to remember past conversations within a specific chat. AI Chain: A sequence of AI steps without memory retention. AI Tool: External resources integrated with N8N to provide AI capabilities (e.g., fetching data). AI Embedding: Converting text data into numerical representations (binary numbers) for AI processing. AI Vector Store: A specialized database for storing and retrieving AI-related data and tools. Persistent AI Memory: Remembering context across all conversations and chats, not just a single session. Autonomous AI Agent: An independent AI that makes decisions and handles complex tasks without human intervention. Prompt Engineering: Crafting effective prompts to get accurate and desired responses from AI models. RAG (Retrieval-Augmented Generation): AI that retrieves relevant external data before generating an answer. Fine-tuning AI Models: Training AI models for specific tasks or desired behaviors. Multimodal AI: AI models that can process and generate various data types (text, image, audio, video) from a single model (e.g., Gemini). LangChain: A framework that connects LLMs with tools, memories, and workflows to make them more powerful. Building Basic Workflows and AI Agents (Practical Demo) The instructor demonstrates creating a basic workflow from scratch: Form Trigger: Set up an N8N web form (Name, Email, Phone Number). Google Sheet Integration: Connect to a Google Sheet using OAuth for auto-appending form submissions. Gmail Integration: Send a dynamic email to the submitted email address using Gmail's OAuth. Next, the instructor guides through building a Telegram AI Bot: Telegram Trigger: Configures a "On Message" trigger for Telegram, requiring OAuth authentication with a BotFather-generated API token. AI Agent Node: Connects the Telegram trigger to an AI Agent to enable decision-making. OpenAI Chat Model: Integrates an OpenAI chat model (e.g., GPT) as the "brain," utilizing free N8N credits. Dynamic Text Message Sender: Configures a Telegram "Send a Text Message" node to dynamically send AI-generated responses back to the user, ensuring expression mode is used for dynamic content. The demo highlights dynamic responses (e.g., remembering user's name, telling jokes) and the impact of adding/removing memory. Finally, the video covers importing and customizing pre-built templates: Demonstrates how to import a complex "Automate Multiplatform Social Media Content Creation with AI" template. Highlights the complexity of such templates, showing connections between various AI agents, LLMs (GPT-4, DALL-E), search APIs (Serp API), and social media platforms (Instagram, Facebook, Twitter, LinkedIn). Encourages users to explore and customize these templates for their specific needs, emphasizing the benefits of ready-made workflows.

Master 80% of n8n by Learning Just These 17 Nodes22:14
Michele TortiMichele Torti

Master 80% of n8n by Learning Just These 17 Nodes

·22:14·193.5K views·21 min saved

• The 17 essential n8n nodes for mastering 80% of its functionality include: Manual, Schedule, and "On App" triggers (like Typeform), Google Sheets, n8n Data Tables (for storage), Split Out and Aggregate (for array manipulation), If and Switch (for logic routing), Code (for complex transformations), Merge (to combine data streams), HTTP Request (for API connectivity), Webhooks (for real-time notifications), and AI nodes (AI and AI Agent for generative tasks and complex decision-making). • Triggers initiate automations: Manual triggers are for testing, Schedule triggers run at set intervals (seconds to months, supporting cron syntax), and "On App" triggers (e.g., Typeform) activate when an event occurs in a connected application. • Storage solutions like Google Sheets and n8n's native Data Tables are fundamental for saving information; mastering one simplifies understanding others like Airtable or Notion due to similar setup processes. • Data processing nodes like "Split Out" break down array items for individual processing, while "Aggregate" consolidates multiple data items into a single unit, essential for preparing data for databases or further steps. • Logic nodes "If" (true/false branching) and "Switch" (multi-condition routing) direct automation flow based on data criteria; the "Switch" node offers greater flexibility with multiple custom routing options. • The HTTP Request node is crucial for integrating with any application that has an API, even if n8n doesn't have a pre-built node for it, by using the application's API documentation. • Webhooks enable real-time notifications when events occur in other applications, facilitating data transfer via API POST requests and allowing for responses back to the originating server. • AI nodes offer direct integration for tasks like content generation (e.g., LinkedIn posts) using various prompts (system, user, assistant), while AI Agents provide a more advanced capability to "think," remember conversations, and interact with connected tools (Gmail, Airtable, Notion) to perform complex actions autonomously.

This is How I Automated Viral AI Videos for FREE (n8n + Veo 3)8:45
Builders CentralBuilders Central

This is How I Automated Viral AI Videos for FREE (n8n + Veo 3)

·8:45·191.0K views·8 min saved

• The core value of the video is providing a **free, automated pipeline** for generating AI videos using Google's V3 model via Vertex AI Studio, orchestrated by n8n. • To access V3, users create a Google Cloud Platform account, which offers $300 in free credits for 90 days, and navigate to Vertex AI > Media Studio > Generate Video. • The automation process is broken into three steps: 1) Idea and prompt generation using Google Gemini and a "think tool" for structured JSON output, 2) Video generation via an HTTP request to Vertex AI (requiring a generated access token from Cloud Shell) and a wait node, and 3) Storing the generated MP4 video on Google Drive and updating a Google Sheet with a sharable link. • A pre-made n8n workflow (JSON file) is available in the description, allowing users to replicate the entire automation pipeline in under 10 minutes by importing the file and connecting their credentials. • The described automation can be adapted beyond the "Yeti vlogging" example to create content for faceless YouTube accounts, with the potential for audience growth and monetization.

About n8n Automation

n8n (pronounced "n-eight-n") has become the go-to automation tool for developers and power users who want control over their workflows. Key features: • Open-source and self-hostable (or use n8n Cloud) • 400+ integrations with popular services • Visual workflow builder with code options when needed • AI capabilities: Build agents, connect to LLMs, process data • Fair-code license: Free to self-host, paid for cloud/enterprise • Active community and extensive documentation Popular use cases include building AI agents, automating social media, syncing data between tools, processing webhooks, and creating custom internal tools without traditional development.

Related Topics

n8n tutorialn8n automationn8n workflown8n beginner

Frequently Asked Questions

What is n8n?

n8n is an open-source workflow automation platform. It lets you connect apps, automate tasks, and build AI agents through a visual interface. You can self-host it for free or use their cloud service.

Is n8n free?

Yes, n8n is free to self-host with unlimited workflows. n8n Cloud offers a free tier with limits, and paid plans start at $20/month for more executions and features.

How does n8n compare to Zapier?

n8n is open-source and self-hostable, while Zapier is cloud-only. n8n offers more flexibility and is cheaper at scale, but Zapier has more pre-built integrations and is easier for non-technical users.

Can n8n build AI agents?

Yes, n8n has native AI capabilities including connections to OpenAI, Anthropic, and local models. You can build agents that process data, make decisions, and take actions across your connected services.

Do I need coding skills to use n8n?

No, n8n's visual builder works without code. However, basic JavaScript knowledge helps for advanced workflows. Many tutorials teach both no-code and code approaches.