AI Agents A-Z
repository·main·Indexed 26 days ago
https://github.com/gyoridavid/ai_agents_azA collection of n8n workflow templates and specialized MCP/REST servers for building AI agents. Use cases include research, lead generation, and automated content creation for YouTube, TikTok, and Shopify. The repository provides JSON workflows for integrating services such as Together AI, Fal.ai, MiniMax Hailuo 2, Bytedance Seedance, and Postiz, as well as deployment guides for Modal.com using FLUX.1 Kontext [dev] and Wan 2.2.
What's inside ai_agents_az
- This workflow automates the creation of TikTok scary story videos. It uses Together AI for image generation, the AI Agents No-Code Tools media server for processing, and Reddit-inspired stories. Once configured, the workflow can be triggered by filling out a form with background music and a voice sample, which then automatically generates a video with a specific art style and story instructions across multiple scenes.
Create short motivational stories for YouTube and TikTok
mainThis automation builds an AI short video maker factory that generates motivational stories and publishes them to YouTube. It can be configured to publish to TikTok only and can be run locally using free tools. The workflow uses n8n for orchestration and integrates with services like Together AI for model generation.Access n8n templates for AI Agents A-Z
mainThis repository contains n8n workflow templates corresponding to the episodes of the AI Agents A-Z YouTube series. You can find specific automation workflows for various AI agent use cases (e.g., research agents, social media automation, video generation) organized by episode number in theepisode_Xdirectories.Create AI videos with MiniMax Hailuo 2 and n8n
mainThis project provides a method to automate AI video generation using MiniMax's Hailuo 02 (2nd generation video AI model) integrated with n8n. You can use the provided n8n workflow as a standalone form-based tool or transform it into a subworkflow to build a fully automated AI video factory.Retrieve the Instagram Business Account ID
mainTo configure the Instagram node in n8n, you need your Instagram Business Account ID. You can retrieve it using the Graph API Explorer:
- In the Graph API Explorer, click on the ID of your Facebook page.
- Append
?fields=instagram_business_accountto the end of the ID in the graph path. - Click
Submitto see the associated Instagram business account details.
Run the AI Agents No-Code Tools server locally
mainTo run the server on your local machine, ensure you have Docker installed. Use the standard image for CPU-only execution or the
-cudatagged image if you have an NVIDIA GPU with the Cuda Toolkit installed.Hardware Requirements:
- At least 4 vCPUs.
- For
chatterboxTTS: at least 8GB RAM. - For
kokoroTTS: at least 6GB RAM.
Setup requirements for UGC video workflow
mainTo run the UGC video automation workflow, you will need access to the following services and API keys:
- n8n: The orchestration platform for the workflow.
- Fal.ai: Required for model access via API keys.
- ElevenLabs: For audio generation.
- Seedance & Latentsync: For video generation and lip-syncing components.
Run the AI Agents No-Code Tools server with NVIDIA GPU support
mainIf you have an NVIDIA GPU and the CUDA Toolkit installed, you can run the server with GPU acceleration using the
-cudatagged image. This requires passing the--gpus=allflag and setting the appropriate NVIDIA environment variables.docker run --rm --gpus=all -e NVIDIA_VISIBLE_DEVICES=all -e NVIDIA_DRIVER_CAPABILITIES=all -p 8000:8000 -it gyoridavid/ai-agents-no-code-tools:latest-cudaCreate free explainer videos with n8n and Z-Image
mainYou can automate the creation of explainer videos (including scripts, voiceovers, and visuals) using an n8n workflow combined with a Modal server. This setup allows you to use Kokoro and Z-Image Turbo for free via a Modal account.
To implement this, you need:
- A Modal server to handle the video creation logic.
- An n8n workflow to orchestrate the process.
Required Resources:
- Modal server:
modal_explainer_videos.py - n8n workflow:
n8n_workflow_explainer_video_creator.json - Z-Image-Turbo: Available on Hugging Face.
- Modal: Used for hosting the server/GPU resources.
Create LinkedIn posts with human-in-the-loop using n8n
mainThis workflow automates the creation of LinkedIn posts using an n8n AI agent with a human-in-the-loop approval step.
Important Note on RSS Feeds: Due to traffic limitations from Venturebeat (as of April 2025), the workflow has been updated to use an alternative RSS feed. If you attempt to use the original Venturebeat RSS feed, you may need to use a VPN or a proxy to avoid traffic restrictions.
Use the Motivational shorts creator n8n workflow
mainThe automation is provided as an n8n JSON workflow file. You can import this workflow into your local or cloud n8n instance to automate the creation of motivational shorts.
workflow_motivational_shorts.jsonCreate the `plans` database table
mainIn the Supabase
Table Editor, create a new table namedplanswith the following four fields:id(int8): Primary key, use default settings.period_type(text): Used to index different periods. Allowed values:quarter,month, orweek.period_index(text): Stores the specific period value (e.g.,2025-Q2).plan_value(text): The actual value of the plan for the given period.