AI Automation Workflows — Page 9 | Neura Market
    Neura Market
    Neura Market
    /Categories
    Marketplace
    Directories
    Resources
    Home/Categories/AI

    AI Workflows

    Artificial Intelligence tools and workflows

    • Automate Transaction Extraction from Telegram Images Using unli.dev Vision API

      Streamline your workflow by automatically extracting transaction details from images sent to your Telegram bot using the unli.dev Vision API. This automation reduces manual entry, saves time, and minimizes errors by converting images to text and sending the results back to Telegram in Markdown format.

      n8nFree
    • Transform YouTube Comments into Content Ideas with AI and Google Sheets

      This workflow automates the conversion of YouTube comments into actionable content ideas, complete with hooks and outlines, using AI tools and Google Sheets.

      n8nFree
    • Automate Personality Insights with Google Sheets and Gemini

      Transform your n8n instance into a powerful personality insights engine using Google Sheets and Gemini. This workflow automates the calculation of BaZi, Numerology, and DISC analyses, updating your spreadsheet with comprehensive personality summaries.

    Marketplace

    • Prompts
    • Workflows
    • Agents Store
    • Workflow Packs
    • Categories
    • Marketplace

    Directories

    • AI Tools Directory
    • ChatGPT
    • Claude
    • Gemini
    • Cursor
    • Grok
    • DeepSeek
    • Perplexity
    • CoPilot
    • Midjourney
    • Stable Diffusion
    • MCP Servers
    • .md Directory
    • All Directories

    Free Tools

    • AI Text Humanizer
    • AI Content Detector
    • Workflow Generator
    • Model Comparison
    • AI Pricing Calculator
    • AI Benchmarks
    • ROI Calculator
    • All Free Tools

    Resources

    • AI News
    • Blog
    • AI Models
    • Integrations
    • Alternatives
    • n8n vs Zapier
    • Make vs Zapier
    • n8n vs Make
    • Resource Library
    • Documentation

    Community

    • AI Jobs
    • AI Events
    • AI Companies
    • Start Selling
    • Sell n8n Workflows
    • Sell AI Agents
    • Sell Prompts
    • Creator Guide
    • Advertise
    • Affiliates

    Company

    • About
    • Contact
    • Help
    • Careers
    • Pricing
    • Terms
    • Privacy
    • License
    • DMCA

    Stay Updated

    Get the latest AI tools and insights delivered to your inbox.

    Neura Market Logoneuramarket

    © 2026 Neura Market. All rights reserved.

    n8nFree
  1. Create a Session-Based Telegram Chatbot with GPT-4o-mini and Google Sheets

    This workflow builds an AI-powered Telegram chatbot with session management using GPT-4o-mini and Google Sheets. It allows users to manage multiple chat sessions, retrieve summaries, and log interactions for auditing.

    n8nFree
  2. Automate Lead Enrichment with AI and Google Sheets

    This workflow automates lead enrichment by integrating Google Sheets, HubSpot, and Bright Data MCP, using AI to enhance data accuracy and efficiency.

    n8nFree
  3. Automate Text Extraction from Images via Telegram and Gemini OCR

    Transform your Telegram bot into a powerful OCR tool using Google Gemini AI. This workflow automates the process of extracting text from images sent to your bot, providing quick and accurate text digitization.

    n8nFree
  4. Automate Webpage Content Extraction with AI Agent

    This workflow uses an AI agent to scrape and process webpage content, converting it into a simplified Markdown format. It supports error handling and content length management for efficient data extraction.

    n8nFree
  5. Dynamic AI Query Handling with Anthropic Models and Web Tools

    This workflow intelligently routes user queries to either Claude Sonnet 4 or Claude Opus 4 models based on complexity, utilizing web search and reasoning tools for enhanced response accuracy.

    n8nFree
  6. Automate ComfyUI Image Generation via Replicate API in n8n

    This workflow automates the process of running ComfyUI image generation tasks using the Replicate API within n8n. It streamlines the interaction with AI models, ensuring efficient and error-free execution.

    n8nFree
  7. Automate SEO Article Creation and Drafting in WordPress with AI

    This workflow automates the generation and uploading of SEO-optimized articles as drafts in WordPress using AI for both content and visuals, streamlining content management for various users.

    n8nFree
  8. Automate Personalized Prospect Research Reports from Booked Calls

    This workflow generates detailed research reports for prospects who book calls, using LinkedIn profiles and advanced web research to provide insights and context.

    n8nFree
  9. AI Website Chatbot with CRM Lead Collection Using GPT and Google Sheets

    This n8n training workflow demonstrates how to connect a **sub-workflow** as a **tool** to an AI Agent. In this example, the main workflow is a **Website Chatbot** that engages visitors, collects contact information, and sends that data to a CRM process. The CRM process itself is a separate sub-workflow, connected to the agent as a tool via the **Tool Workflow** node. --- ## Step-by-Step Setup Instructions ### 1. Create the Sub-Workflow (CRM Tool) This sub-workflow will be triggered by the AI agent to process collected information. It will: 1. Receive inputs (email, description) from the main chatbot workflow. 2. Format the data into a structured JSON format. 3. Append the data to a Google Sheet (acting as the CRM database). 4. Send a confirmation message back to the main workflow. **Steps inside the sub-workflow:** - **When Executed by Another Workflow** - Triggered by the main workflow's tool node. - **Convert Conversation (Agent)** - Uses OpenAI to extract and format the input into a JSON structure: ```json { email: "jane.doe@example.com", description: "Wants help automating lead intake and sending Slack notifications." } ``` **Structured Output Parser** - Ensures the extracted data matches the expected JSON schema. **Append row in sheet (Google Sheets)** - Adds the new lead data to your CRM sheet. **Code Node** - Returns a simple text confirmation like `Thanks for the info, we will be in touch soon`. ### Required setup for Google Sheets: - Enable the Google Sheets API and connect your Google account in n8n. - Create a sheet with at least the columns `email` and `description`. - Use the sheet's Document ID and tab name in the Google Sheets node. --- ## 2. Create the Main Workflow (Website Chatbot) This workflow acts as the main AI Agent handling incoming chat messages. ### Steps in the main workflow: 1. **When chat message received** - Starts the workflow whenever a visitor sends a message via your chatbot integration. 2. **Website Chatbot (Agent Node)** - Configured with a **System Message** that: - Briefly explains your services. - Asks the visitor what processes they want to automate. - Requests their name and email. - Sends collected data to the CRM tool once email and description are available. 3. **OpenAI Chat Model** - Connects to the AI agent as its language model. 4. **Simple Memory** - Stores short-term context for the ongoing chat. 5. **CRM Tool (Tool Workflow Node)** - Points to the sub-workflow created in Step 1, allowing the chatbot to trigger it directly. --- ## 3. Connecting the Sub-Workflow to the AI Agent 1. Add a **Tool Workflow** node to the main workflow. 2. Select `Parameter` as the source. 3. Paste in your sub-workflow JSON or select it from your n8n workflows. 4. Connect the **Tool Workflow** node to your AI Agent using the `ai_tool` connection. 5. Give the tool a clear description (e.g., `CRM tool to store lead information`) so the agent knows when to use it. --- ## 4. How It Works in Action 1. A visitor sends a message through the chatbot. 2. The AI Agent engages, asks questions, and collects their name, email, and request. 3. Once collected, the agent triggers the **CRM Tool**. 4. The sub-workflow formats the data, stores it in Google Sheets, and sends a confirmation. 5. The chatbot confirms with the visitor that their request was received. --- ## 5. Customization Ideas - Replace Google Sheets with your actual CRM API. - Add validation to ensure the email format is correct before saving. - Expand the CRM tool to send a Slack or email notification after storing the lead. --- **Created by Robert A. - Ynteractive** Website: https://ynteractive.com Email: robert@ynteractive.com

    n8nFree
  10. Comprehensive Image and PDF Processing with Google Gemini AI in n8n

    This workflow demonstrates five distinct methods to analyze images and PDF documents using Google Gemini AI within n8n, catering to various use cases and customization needs.

    n8nFree
  11. Generate Job-Specific AI Resumes with Perplexity AI and PDF Export

    This workflow contains community nodes that are only compatible with the self-hosted version of n8n. # AS Resume Maker Workflow Explanation ## Aim The **aim** of the *AS Resume Maker according to JD* workflow is to automate the creation of an **AS-friendly resume** by tailoring a candidate's resume to a specific job description (JD). It streamlines the process of aligning resume content with JD requirements, producing a professional, scannable PDF resume that can be stored in Google Drive. ## Goal The **goal** is to: - Allow users to input their resume (text or PDF) and a JD (PDF) via a web form. - Extract and merge the text from both inputs. - Use AI to customize the resume, prioritizing JD keywords while maintaining the candidate's truthful information. - Generate a clean, AS-optimized HTML resume and convert it to a downloadable PDF. - Upload the final PDF to Google Drive for easy access. This ensures the resume is optimized for **Applicant Tracking Systems (ATS)**, which are used by employers to screen resumes, by incorporating relevant keywords and maintaining a simple, scannable format. ## Requirements The workflow relies on specific components and configurations: - **n8n Platform**: The automation tool hosting the workflow. - **Node Requirements**: 1. **Form Trigger**: A web form to collect user inputs (resume text/PDF, JD PDF). 2. **Process one binary file1**: JavaScript to rename and organize PDF inputs. 3. **Extracting resume1**: Extracts text from PDF files. 4. **Merge Resume + JD1**: Combines resume and JD text into a single string. 5. **Customize resume1**: Uses Perplexity AI to generate an ATS-friendly HTML resume. 6. **HTML format1**: Cleans the HTML output by removing newlines. 7. **HTML3**: Processes HTML for potential display or validation. 8. **HTML to PDF**: Converts the HTML resume to a PDF file. 9. **Upload file**: Saves the PDF to a specified Google Drive folder. - **Credentials**: - *CustomJS account* for the HTML-to-PDF conversion API. - *Google Drive account* for file uploads. - *Perplexity account* for AI-driven resume customization. - **Input Requirements**: - Resume (plain text or PDF). - Job description (PDF). - **Output**: A tailored, ATS-friendly resume in PDF format, uploaded to Google Drive. ## API Usage The workflow integrates multiple APIs to achieve its functionality: - **Perplexity API**: Used in the *Customize resume1* node to leverage the *sonar-reasoning* model for generating an ATS-optimized HTML resume. The API processes the merged resume and JD text, aligning content with JD keywords while adhering to strict HTML and CSS guidelines (e.g., Arial font, no colors, single-column layout). [Ref: Workflow JSON] - **CustomJS API**: Used in the *HTML to PDF* node to convert the cleaned HTML resume into a PDF file. This API ensures the resume is transformed into a downloadable format suitable for ATS systems. [Ref: Workflow JSON] - **Google Drive API**: Used in the *Upload file* node to store the final PDF in a designated Google Drive folder (*Resume* folder in *My Drive*). This API handles secure file uploads using OAuth2 authentication. [Ref: Workflow JSON] These APIs are critical for AI-driven customization, PDF generation, and cloud storage, ensuring a seamless end-to-end process. ## HTML to PDF Conversion The HTML-to-PDF conversion is a key step in the workflow, handled by the **HTML to PDF** node: - **Process**: The node takes the cleaned HTML resume (`$json.cleanedResponse`) from the *HTML format1* node and uses the `@custom-js/n8n-nodes-pdf-toolkit.html2Pdf` node to convert it into a PDF. - **API**: Relies on the *CustomJS API* for high-fidelity conversion, ensuring the PDF retains the ATS-friendly structure (e.g., no graphics, clear text hierarchy). - **Output**: A binary PDF file passed to the *Upload file* node. - **Relevance**: This step ensures the resume is in a widely accessible format, suitable for downloading or sharing with employers. The use of a dedicated API aligns with industry practices for HTML-to-PDF conversion, as seen in services like PDFmyURL or PDFCrowd, which offer similar REST API capabilities for converting HTML to PDF with customizable layouts. [Ref:](https://pdfmyurl.com/) [Ref:](https://pdfcrowd.com/api/html-to-pdf-api/) ## Download from Community Link The workflow does not explicitly include a community link for downloading the final PDF, but the **Upload file** node stores the PDF in Google Drive, making it accessible via a shared folder or link. To enable direct downloads: ## Workflow Summary The *AS Resume Maker according to JD* workflow automates the creation of a tailored, ATS-friendly resume by: 1. Collecting user inputs via a web form (*Form Trigger*). 2. Processing and extracting text from PDFs (*Process one binary file1*, *Extracting resume1*). 3. Merging and customizing the content using *Perplexity AI* (*Merge Resume + JD1*, *Customize resume1*). 4. Formatting and converting the resume

    n8nFree
  12. Automate Blog Content Creation with Notion MCP, DeepSeek AI, and WordPress

    ![Workflow Screenshot](https://www.dr-firas.com/workflow_deepseek.png) # Who Is This For This workflow is ideal for content creators, bloggers, marketers, and professionals seeking to automate the creation and publication of SEO-optimized articles. It's particularly beneficial for those utilizing Notion for content management and WordPress for publishing. # What Problem Does This Workflow Solve Manually creating SEO-friendly articles is time-consuming and requires consistent effort. This workflow streamlines the entire process—from detecting updates in Notion to publishing on WordPress—by leveraging AI for content generation, thereby reducing the time and effort involved. # What This Workflow Does - Monitor Notion Updates: Detects changes in a specified Notion database. - AI Content Generation: Utilizes an AI model to produce an SEO-optimized article based on Notion data. - Publish to WordPress: Automatically posts the generated article to a WordPress site. - Email Notification: Sends an email containing the article's title and URL. Update Notion Database: Updates the corresponding entry in the Notion database with the article details. # Setup Guide ## Prerequisites - WordPress account with API access. - API key for the AI model used. - Notion integration with the relevant database ID. - Credentials for the email service used (e.g., Gmail). Community Node Requirement: This workflow utilizes the n8n-nodes-mcp community node, which is only compatible with self-hosted instances of n8n. For more information on installing and managing community nodes, refer to the n8n documentation. n8n Docs ## Steps 1. Import the workflow into your self-hosted n8n instance. 2. Install the required community node (n8n-nodes-mcp). 3. Configure API credentials for WordPress, the AI service, Notion, and the email service. 4. Define necessary variables, such as the notification email address and Notion database IDs. 5. Activate the workflow to automate the process. # How to Customize This Workflow - AI Prompt: Adjust the prompt used for content generation to align with your preferred tone and style. - Article Structure: Modify the structure of the generated article by tweaking settings in the content generation node. - Notifications: Customize the content and recipients of the emails sent post-publication. - Notion Updates: Tailor the fields updated in Notion to suit your specific requirements.

    n8nFree
  13. Automate Sales Planning with AI Agents, Google Docs, and Slack

    Leverage a multi-agent architecture in n8n to automate the creation of a sales-season plan. This workflow orchestrates AI agents for marketing, operations, and finance to produce a comprehensive plan, convert it to PDF, and share it via Slack.

    n8nFree
  14. Automate HR & IT Helpdesk Chatbot with Audio Transcription

    This workflow automates an intelligent chatbot that assists employees by answering HR and IT queries through text and audio messages. It transcribes audio inputs, processes queries using AI, and retrieves information from a vector database to provide accurate responses.

    n8nFree
  15. Automate eBook Creation with Google Gemini and Google Docs

    Streamline the creation of structured eBooks by automating chapter generation, content structuring, and formatting using Google Gemini Flash 2.0 and Google Docs.

    n8nFree
  16. Automate Thai PDF Processing to Google Sheets with Typhoon OCR and AI

    Streamline the processing of multi-page Thai PDFs by leveraging Typhoon OCR and AI to extract structured data and automatically append it to Google Sheets.

    n8nFree
  17. Automate Webpage Scraping and Summarization with GPT-4o

    This workflow automates the process of scraping essays from Paul Graham's website and uses AI to summarize them. It efficiently extracts content and provides concise summaries, showcasing an end-to-end automated solution.

    n8nFree
  18. Create a Browser-Based Voice Assistant with OpenAI and n8n

    Build an interactive voice assistant interface using n8n and OpenAI, enabling users to engage with AI through voice commands directly in their browser.

    n8nFree
  19. Integrate DeepSeek AI with Telegram for Contextual Conversations

    This n8n workflow connects a DeepSeek AI agent with Telegram to deliver personalized, context-aware responses using long-term memory capabilities.

    n8nFree
  20. Trustpilot Reviews Analyzer

    A ready-to-use n8n workflow that connects ManualTrigger, Set, Html. Trustpilot Reviews Analyzer. Customize and deploy in minutes.

    n8nFree
  21. Automate Stock Chart Analysis with GPT-4 Vision and Telegram

    This n8n workflow automates the analysis of stock charts using GPT-4 Vision and sends the results via Telegram. It provides real-time insights by leveraging AI to interpret stock trends and market sentiment.

    n8nFree
  22. ← PreviousPage 9 of 81Next →

    Related categories

    Communication (2,463)Business Operations & ERPs (1,540)Other (1,425)Productivity (1,202)Marketing (1,145)Data & Analytics (995)File & Document Management (802)CRM - Sales (604)Notifications (580)Social Media (562)

    Need a custom ai workflow?

    Our automation experts build tailored workflows for your exact stack and process.

    Request a Custom Workflow