Development & IT Workflows
Software development and IT operations
PAC Resolver: Proxy Auto-Config Automation
Automates generation of async resolver functions from PAC files for dynamic proxy configuration in Node.js environments.
n8n$6.99Create Monday items from MantisBT issues
Make will watch new issues in your MantisBT at regular intervals and create items in Monday using the information from MantisBT.
MakeFreeReceive Server-Sent Events
This n8n workflow uses the SSE Trigger node to listen for incoming server-sent events from a streaming source. When an event is received, it captures the payload and passes it for further processing—such as logging, filtering, or routing to other services. Ideal for developers building real-time data pipelines or monitoring event streams directly inside n8n.
n8n$2.99Transfer Credentials to Other n8n Instances Using a Multi-Form
## Purpose This workflow allows you to transfer credentials from one n8n instance to another.   ## How it works - A multi-form setup guides you through the entire process. - You get to choose one of your predefined (in the Settings node) remote instances first. - Then all credentials of the current instance are being retrieved using the Execute Command node. - On the next form page, you can select one of the credentials by their name and initiate the transfer. - Finally, the credential is being created on the remote instance using the n8n API. A final form ending indicates if that action succeeded or not. ## Setup - Select your credentials in the nodes which require those. - Configure your remote instance(s) in the Settings node. Every instance is defined as an object with the keys **name**, **apiKey**, and **baseUrl**. Those instances are then wrapped inside an array. You can find an example described within a note on the workflow canvas. ## How to use - Grab the (production) URL of the Form from the first node. - Open the URL and follow the instructions given in the multi-form. ## Disclaimer - Please note that this workflow can only run on self-hosted n8n instances since it requires the Execute Command Node. - Security: Beware that all credentials are being decrypted and processed within the workflow. Also, the API keys to other n8n instances are stored within the workflow. - This solution is primarily meant for transferring data between testing environments. For production use, consider the n8n enterprise edition which provides a **reliable** way to manage credentials across different environments.
n8n$14.99Create a WHOIS API Interface for AI Agents with 8 Domain Management Operations
Complete MCP server exposing 8 Bulk WHOIS API operations to AI agents. ## Quick Setup Need help? Want access to more workflows and even live Q&A sessions with a top verified n8n creator? All 100% free? [Join the community](https://www.skool.com/n8n-nodes-automation-lab-1570/about) 1. **Import** this workflow into your n8n instance. 2. **Credentials** Add Bulk WHOIS API credentials. 3. **Activate** the workflow to start your MCP server. 4. **Copy** the webhook URL from the MCP trigger node. 5. **Connect** AI agents using the MCP URL. ## How it Works This workflow converts the Bulk WHOIS API into an MCP-compatible interface for AI agents. - **MCP Trigger**: Serves as your server endpoint for AI agent requests. - **HTTP Request Nodes**: Handle API calls to http://localhost:5000. - **AI Expressions**: Automatically populate parameters via `$fromAI()` placeholders. - **Native Integration**: Returns responses directly to the AI agent. ## Available Operations (8 total) ### Batch (4 endpoints) - **GET /batch**: Get your batches. - **POST /batch**: Create a batch. The batch is then being processed until all provided items have been completed. At any time it can be `get` to provide the current status with results optionally. - **DELETE /batch/{id}**: Delete a batch. - **GET /batch/{id}**: Get a batch. ### Db (1 endpoint) - **GET /db**: Query domain database. ### Domains (3 endpoints) - **GET /domains/{domain}/check**: Check domain availability. - **GET /domains/{domain}/rank**: Check domain rank (authority). - **GET /domains/{domain}/whois**: WHOIS query for a domain. ## AI Integration **Parameter Handling**: AI agents automatically provide values for: - Path parameters and identifiers. - Query parameters and filters. - Request body data. - Headers and authentication. **Response Format**: Native Bulk WHOIS API responses with full data structure. **Error Handling**: Built-in n8n HTTP request error management. ## Usage Examples Connect this MCP server to any AI agent or workflow: - **Claude Desktop**: Add MCP server URL to configuration. - **Cursor**: Add MCP server SSE URL to configuration. - **Custom AI Apps**: Use MCP URL as a tool endpoint. - **API Integration**: Direct HTTP calls to MCP endpoints. ## Benefits - **Zero Setup**: No parameter mapping or configuration needed. - **AI-Ready**: Built-in `$fromAI()` expressions for all parameters. - **Production Ready**: Native n8n HTTP request handling and logging. - **Extensible**: Easily modify or add custom logic. > **[Free for community use](https://github.com/Cfomodz/community-use)!** Ready to deploy in under 2 minutes.
n8n$9.99Get Today's Date and Day Using the Function Node
Unfortunately, I can't view or interact with images or files, so I'm unable to directly correct a description based on an image. However, if you can provide the text from the description, I'd be happy to help correct it!
n8n$2.99Track Demo Bookings: Google Calendar to Meta Conversions API
Automates sending Google Calendar demo bookings as conversion events to Meta Conversions API, improving ad attribution for lead generation campaigns.
n8n$12.99Notion to GitHub Issues with Email Notifications
Automates tracking Notion feature requests by creating GitHub issues for 'To develop' items and sending email alerts for others, streamlining dev team collaboration.
n8n$14.99Create and Populate MySQL Table on Demand
This workflow creates a new table in MySQL and inserts predefined data when executed, serving as a practical example for MySQL node usage.
n8n$4.99AI-Powered LinkedIn Profile vs Job Description Matcher
Automates comparison of LinkedIn profiles/CVs against job descriptions using GhostGenius scraping and Groq AI for recruiter insights, strengths, gaps, and optimization tips.
n8n$22.99♻️ AI Multi-Stop Planner for Circular Logistics (GPT-4o & OpenRoute)
Automates multi-stop pickup route optimization for reusable packaging returns using Gmail triggers, GPT-4o AI parsing, geocoding, and OpenRouteService API.
n8n$24.99Creators Hub: Generate Dynamic SVG Stats with Daily Updates
# n8n Creators Template: Creator Profile Stats Updater This n8n workflow template is designed to automate the process of updating a creator's profile statistics, including total workflows, complex workflows, approved workflows, pending workflows, total nodes, and total views. It utilizes various nodes to fetch data, process it, and update an SVG file hosted on GitHub to reflect the latest stats. ## Workflow Overview 1. **Schedule Trigger**: Triggers the workflow execution at specified intervals. 2. **Config**: Sets up configuration details like creator username, colors for text, icons, border, and card. 3. **Get Workflows**: Fetches workflows associated with the creator from the n8n API. 4. **Workflows Data**: Processes the fetched data to calculate various statistics. 5. **Get User**: Fetches user details from the n8n API. 6. **Download Image**: Downloads the creator's profile image. 7. **Extract From File**: Extracts binary data from the downloaded image file. 8. **SVG**: Generates an SVG file with updated stats and visual representation. 9. **GitHub**: Commits the updated SVG file to the specified GitHub repository. 10. **Final**: Prepares the final data set for further processing or output. 11. **Sticky Note**: Provides a visual note or reminder within the workflow editor. ## Embed & Live Preview Since it's an .SVG format, you can host it anywhere. Treat it like a normal image so you can embed it with any site, forum, page that supports posting images. Here's an example code for markdown: ```markdown [](https://n8n.io/creators/n8n-team) ``` Here's the result: [](https://n8n.io/creators/n8n-team) Or served through CDN & Cache: [](https://n8n.io/creators/n8n-team) ## Setup Instructions 1. **GitHub Credentials**: Ensure you have GitHub credentials set up in your n8n instance to allow the workflow to commit changes to your repository. 2. **Configure Trigger**: Adjust the `Schedule Trigger` node to set the desired execution intervals for the workflow. 3. **Set Configuration**: Customize the `Config` node with your GitHub username and preferred aesthetic options for the SVG. 4. **Deploy Workflow**: Import the workflow into your n8n instance and deploy it. ## Customization Options * **Text and Icon Colors**: Customize the colors used in the SVG by modifying the respective fields in the `Config` node. * **Profile Image Size**: Adjust the image size in the `Download Image` node URL if needed. * **Commit Messages**: Modify the commit messages in the GitHub nodes to suit your version control conventions. I've used the `$now` function to include the current time in the message, which will always give a different commit value. ## Requirements * n8n (Self-hosted or Cloud version compatible with 2024 releases and up) * GitHub account and repository * Basic understanding of n8n workflow configuration ## Support and Contributions For support, please refer to the [n8n community forum](https://community.n8n.io) or the [official n8n documentation](https://docs.n8n.io). Contributions to the template can be made. You're allowed to reuse this workflow and reshare with edits (like new design/colors, etc.) under your name.
n8n$9.99Automate Data Transmission with Basic Authentication in Make
Enhance your automation workflows by securely transmitting data using basic authentication with HTTP actions in Make. This workflow sets variables and sends data efficiently, ensuring secure and automated processes.
Make$3.99Automate n8n Workflow Backups to NextCloud with Versioning
This workflow automates the backup of n8n workflows to NextCloud, ensuring file versioning and regular updates using the RES API.
n8n$9.99Add MantisBT issues from new Google Forms responses
A ready-to-use Make workflow that connects Google-forms, Mantisbt. Add MantisBT issues from new Google Forms responses. Customize and deploy in minutes.
Make$2.99Extract an item and/or its value from an array of collections
From an Array of Collections (Names, Emails, IDs), you can extract an item (Email) and/or extract the value of an item (a specific email) using functions.
Make$3.99Automate Google Docs Data Transfer to External Applications via HTTP
Efficiently automate the transfer of data from Google Docs to external applications using HTTP actions, enhancing document integration and workflow automation.
Make$2.99Convert URL HTML to Markdown & Extract Page Links
Uses Firecrawl.dev API to convert webpage HTML to clean Markdown format and extract all links, with built-in batch processing and rate limiting for efficient data extraction.
n8n$14.99Create Onfleet Tasks from Local Spreadsheets
Automates bulk creation of Onfleet delivery tasks by importing data from local spreadsheet files, streamlining last-mile dispatch.
n8n$12.99🛠️ NocoDB MCP Server: All 5 Row Ops for AI Agents
Complete zero-config MCP server exposing all 5 NocoDB row operations (create, delete, get, get many, update) to AI agents via webhook.
n8n$24.99Create Webhook for PDF Analysis using OpenAI
This workflow automates the process of analyzing PDF files to determine if they match specified criteria using OpenAI's capabilities.
n8n$4.99Automate SSH Commands for New Google Workspace Users
Automatically execute SSH commands on a remote device whenever a new user is added to a specified Google Workspace domain.
MakeFreeSave Hotmart Events to Google Sheets Automation
Automatically capture and log Hotmart events like purchases, refunds, subscriptions, and cart abandonments directly into Google Sheets for seamless tracking and analysis.
n8n$12.99Basic n8n Webhook Greeting Workflow Tutorial
Simple n8n workflow that receives name and event via webhook, generates a personalized greeting using a Function node, and forwards it via HTTP POST to a webserver.
n8n$4.99
Related categories
Custom AI Systems & Services
Our team of experienced AI builders will help build custom AI systems, workflows, and solutions.
Request Custom Work