IT & Development Automation Workflows — Page 5 | Neura Market
    Neura Market
    Neura Market
    /Categories
    Marketplace
    Directories
    Resources
    Home/Categories/IT & Development

    IT & Development Workflows

    Developer tools and IT solutions

    • Authenticate Users via OpenID Connect in n8n Workflows

      This workflow facilitates user authentication using OpenID Connect, allowing secure access to webhooks and user information retrieval.

      n8n$9.99
    • n8n Node Automation Basics - Creating Your First Simple Workflow (2/3)

      In this video, we will create a simple n8n Nodemation workflow to receive data via webhook, alter the data, and send it to a webserver. We will be using webhook, function, and HTTP request nodes together. [>> Youtube Video](https://youtu.be/ovlxledZfM4) [![Youtube Video](http://img.youtube.com/vi/ovlxledZfM4/0.jpg)](http://www.youtube.com/watch?v=ovlxledZfM4 "Youtube Video")

      n8n$3.99
    • Public Webhook Relay

      ## Disclaimer This template only works on n8n local instances! ## How it Works This workflow allows you to receive webhooks from the public web and have your local workflow catch them, without any remote proxy. It is very useful for running quick tests without exposing your dev server. All you have to do is activate the workflow and use the public address as defined below. ## Set up steps If you use the default key-value storage, there are only three steps: 1. Install the *@horka.tv/n8n-nodes-storage-kv* community node 2. Put your n8n workflow address in **Local Webhook Address** 3. Activate the workflow and, from *Executions*, note down your public webhook token from the inputs to **Get Latest Requests**. You can now use https://webhook.site/[YOUR TOKEN] as a webhook destination, to receive webhook requests from the public web.

    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 Answers
    • Error Solutions
    • AI Tutorials
    • AI Models
    • Integrations
    • Alternatives
    • n8n vs Zapier
    • Make vs Zapier
    • n8n vs Make
    • Resource Library
    • Documentation
    • API Access to Our Data

    Community

    • AI Newsletter
    • 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

    The #1 Newsletter in AI

    Weekly updates, news, and content that matter.

    Neura Market Logoneuramarket

    © 2026 Neura Market. All rights reserved.

    n8n$14.99
  1. Deploy a Google Workspace Admin MCP Server for AI Integration

    Set up a fully functional MCP server to manage Google Workspace Admin operations with AI agents. This workflow provides seamless integration with zero configuration required.

    n8n$14.99
  2. Automate Public IP Updates to Namecheap Dynamic DNS

    Automatically update your public IP address to Namecheap's Dynamic DNS for specified subdomains every 15 minutes.

    n8n$4.99
  3. Retry on Fail Except for Known Errors

    ## Purpose This workflow snippet allows for advanced error catching during retry attempts. There are cases where you want to check if an item exists first, so you can determine the following actions. Some APIs do not support an endpoint (e.g., Todoist: completed tasks) to do so, which is why you would work with the error branch, only that this does not work well in combination with the retry functionality. ## How it works - Instead of the built-in retry function of a Node, a custom loop is used to get more granular control in between the iterations. - If the main executed node fails, the error can be filtered for an expected error, which can trigger a separate action. - The retries only happen if an unexpected error happened. - The workflow only stops if the defined amount of retries is exceeded. ## Setup - Copy the nodes into your existing workflow. - Replace the “Replace me” placeholder with the Node you want to apply the retry logic on. - Follow the sticky notes for more instructions and optional settings.

    n8n$14.99
  4. Item Matching() Usage Example

    This workflow provides a simple example of how to use `itemMatching(itemIndex: Number)` in the Code node to retrieve linked items from earlier in the workflow.

    n8n$4.99
  5. Get 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.99
  6. Build Production-Ready User Authentication with Airtable and JWT

    This n8n workflow provides a comprehensive solution for user authentication and management, leveraging Airtable as the backend database. It includes flows for user sign-up and login, as well as the sample CRUD operations retrieving user details, and updating user information. **Youtube Video of me explaining the flow:** https://www.youtube.com/watch?v=gKcGfyq3dPM ### How it Works **User Sign-Up Flow** 1. **Receives POST request**: A webhook listens for POST requests containing new user details (email, first name, last name, password). 2. **Checks for existing email**: The workflow queries Airtable to see if the submitted email already exists. 3. **Handles email in use**: If the email is found, it responds with `{response: email in use}`. 4. **Creates new user**: If the email is unique, the password is **SHA256 hashed (Base64 encoded)**, and the user's information (including the hashed password) is stored in Airtable. A successful response of `{response: success}` is then sent. **User Login Flow** 1. **Receives POST request**: A webhook listens for POST requests with user email and password for login. 2. **Verifies user existence**: It checks Airtable for a user with the provided email. If no user is found, it responds with a failure message (`wrong email`). 3. **Compares passwords**: If a user is found, the submitted password is **hashed (SHA256, Base64 encoded)** and compared with the stored hashed password in Airtable. 4. **Responds with JWT or error**: If passwords match, a **JWT token** containing the user's ID and email is issued. If they don't match, a `wrong password` response is sent. **Flows for a Logged-In User** These flows require a **JWT-authenticated request**. * **Get User Details:** 1. **Webhook (GET)**: Receives a JWT-authenticated request. 2. **Airtable (Read)**: Fetches the current user's record using the `jwtPayload.id`. 3. **Set Node (Specify Current Details)**: Maps fields like First Name, Last Name, Email, and Date from Airtable to a standard output format. * **Update User Details:** 1. **Webhook (POST)**: Receives updated user data (email, name, password). 2. **Airtable (Upsert)**: Updates the record matching `jwtPayload.id` using the submitted fields. 3. **Set Node (Specify New Details)**: Outputs the updated data in a standard format. ### Set Up Steps (Approx. 5 Minutes) **Step 1: Set up your Airtable Base and Table** You'll need an Airtable Base and a table to store your user data. Ensure your table has at least the following columns: * **Email** (Single Line Text) * **First Name** (Single Line Text) * **Last Name** (Single Line Text) * **Password** (Single Line Text - this will store the hashed password) * **Date** (Date - optional, for user sign-up date) **Step 2: Obtain an Airtable Personal Access Token** 1. Go to the Airtable website and log in to your account. 2. Navigate to your personal access token page (usually found under your developer settings or by searching for personal access tokens). 3. Click Create new token. 4. Give your token a name (e.g., n8n User Management). 5. **Grant necessary permissions**: * **Scope**: `data.records:read`, `data.records:write` for the specific base you will be using. * **Base**: Select the Airtable base where your user management table resides. 6. Generate the token and **copy it immediately**. You won't be able to see it again. Store it securely. **Step 3: Create a JWT Auth Credential in n8n** 1. In your n8n instance, go to Credentials (usually found in the left-hand sidebar). 2. Click New Credential and search for JWT Auth. 3. Give the credential a name (e.g., UserAuthJWT). 4. For the Signing Secret, enter a strong, random string of characters. This secret will be used to sign and verify your JWT tokens. **Keep this secret highly confidential.** 5. Save the credential. ### Customization Options This workflow is designed to be highly adaptable: * **Database Integration**: Easily switch from Airtable to other databases like PostgreSQL, MySQL, MongoDB, or even Google Sheets by replacing the Airtable nodes with the appropriate database nodes in n8n. * **Authentication Methods**: Extend the authentication to include multi-factor authentication (MFA), social logins (Google, Facebook), or integrate with existing identity providers (IdP) by adding additional nodes. * **User Profile Fields**: Add or remove user profile fields (e.g., phone number, address, user roles) by adjusting the Airtable table columns and the Set nodes in the workflow. * **Notification System**: Integrate notification systems (e.g., email, SMS) for events like new user sign-ups, password resets, or account changes. * **Admin Panel**: Build an admin panel using n8n to manage users directly, including functionalities for adding, deleting, or updating user records, and resetting passwords. This workflow provides a solid foundation for building robust user management.

    n8n$14.99
  7. Automate Venafi TLS Protect Operations with AI Integration

    Deploy a fully operational MCP server to manage Venafi TLS Protect Datacenter operations, seamlessly integrating with AI agents for automated certificate and policy management.

    n8n$9.99
  8. Seamlessly Restore n8n Workflows from GitHub Backups

    Effortlessly restore your n8n workflows from GitHub backups, ensuring no duplicates are created and saving valuable time during recovery.

    n8n$14.99
  9. Get All Releases in Sentry

    The description provided appears to be referencing an image with a placeholder text that indicates a screenshot of a workflow, but there's no actual description or text content to correct. Please provide the text you need corrected.

    n8n$3.99
  10. Sentry.io Tool MCP Server - All 25 Operations

    Need help? Want access to this workflow + many more paid workflows + live Q&A sessions with a top verified n8n creator? [Join the community](https://www.skool.com/beyond-nodes-automation-lab-2006/about) Complete MCP server exposing all Sentry.io tool operations to AI agents. Zero configuration needed - all 25 operations pre-built. ## Quick Setup 1. **Import** this workflow into your n8n instance 2. **Activate** the workflow to start your MCP server 3. **Copy** the webhook URL from the MCP trigger node 4. **Connect** AI agents using the MCP URL ## How it Works - **MCP Trigger**: Serves as your server endpoint for AI agent requests - **Tool Nodes**: Pre-configured for every Sentry.io tool operation - **AI Expressions**: Automatically populate parameters via `$fromAI()` placeholders - **Native Integration**: Uses official n8n Sentry.io tool with full error handling ## Available Operations (25 total) Every possible Sentry.io tool operation is included: ### Event (2 operations) - **Get an event** - **Get many events** ### Issue (4 operations) - **Delete an issue** - **Get an issue** - **Get many issues** - **Update an issue** ### Organization (4 operations) - **Create an organization** - **Get an organization** - **Get many organizations** - **Update an organization** ### Project (5 operations) - **Create a project** - **Delete a project** - **Get a project** - **Get many projects** - **Update a project** ### Release (5 operations) - **Create a release** - **Delete a release** - **Get a release by version ID** - **Get many releases** - **Update a release** ### Team (5 operations) - **Create a team** - **Delete a team** - **Get a team** - **Get many teams** - **Update a team** ## AI Integration **Parameter Handling**: AI agents automatically provide values for: - Resource IDs and identifiers - Search queries and filters - Content and data payloads - Configuration options **Response Format**: Native Sentry.io tool API responses with full data structure **Error Handling**: Built-in n8n error management and retry logic ## Usage Examples Connect this MCP server to any AI agent or workflow: - **Claude Desktop**: Add MCP server URL to configuration - **Custom AI Apps**: Use MCP URL as tool endpoint - **Other n8n Workflows**: Call MCP tools from any workflow - **API Integration**: Direct HTTP calls to MCP endpoints ## Benefits - **Complete Coverage**: Every Sentry.io tool operation available - **Zero Setup**: No parameter mapping or configuration needed - **AI-Ready**: Built-in `$fromAI()` expressions for all parameters - **Production Ready**: Native n8n error 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$24.99
  11. Automate Case Management in TheHive with n8n

    Streamline your incident response by automating the creation, updating, and retrieval of cases in TheHive using n8n.

    n8n$4.99
  12. Classify New Bugs in Linear with OpenAI's GPT-4 and Move Them to the Right Team

    ## Use case When working with multiple teams, bugs must get in front of the right team as quickly as possible to be resolved. Normally this includes a manual grooming of new bugs that have arrived in your ticketing system (in our case, Linear). We found this way too time-consuming. That's why we built this workflow. ## What this workflow does This workflow triggers every time a Linear issue is created or updated within a certain team. For us at n8n, we created one general team called Engineering where all bugs get added in the beginning. The workflow then checks if the issue meets the criteria to be auto-moved to a certain team. In our case, that means that the description is filled, that it has the bug label, and that it's in the `triage` state. The workflow then classifies the bug using OpenAI's GPT-4 model before updating the team property of the Linear issue. If the AI fails to classify a team, the workflow sends an alert to Slack. ## Setup 1. Add your Linear and OpenAI credentials. 2. Change the team in the `Linear Trigger` to match your needs. 3. Customize your teams and their areas of responsibility in the `Set me up` node. Please use the format `[Team name][Description/Areas of responsibility]`. Also, make sure that the team names match the names in Linear exactly. 4. Change the Slack channel in the `Set me up` node to your Slack channel of choice. ## How to adjust it to your needs - Play around with the context that you're giving to OpenAI, to make sure the model has enough knowledge about your teams and their areas of responsibility. - Adjust the handling of AI failures to your needs. ## How to enhance this workflow At n8n, we use this workflow in combination with some others. E.g., we have the following things on top: - We're using an automation that enables everyone to add new bugs easily with the right data via a `/bug` command in Slack (check out [this template](https://n8n.io/workflows/2153-add-a-bug-to-linear-via-slack-command) if that's interesting to you). This workflow was built using n8n version 1.30.0.

    n8n$9.99
  13. Batch Email Verification Using Google Sheets and Icypeas

    Automate the process of verifying email addresses in a Google Sheet using Icypeas. This workflow reads email data from your Google Sheet, authenticates with Icypeas, and performs a bulk email verification.

    n8n$4.99
  14. Create, Update, and Get an Object from Bubble

    This workflow allows you to create, update, and get an object from Bubble. ![workflow-screenshot](fileId:478) **Bubble node:** This node will create a new object of the type `Doc` in Bubble. If you want to create an object with a different type, use that type instead. **Bubble1 node:** This node will update the object that we created using the previous node. **Bubble2 node:** This node will retrieve the information of the object that we created earlier.

    n8n$3.99
  15. Convert an Array into an Array of Objects

    This n8n workflow uses the Function node to transform a plain array into an array of objects, structuring each element with a key-value mapping. It helps developers prepare data for downstream nodes that expect object formats, such as database inserts or HTTP requests.

    n8n$2.99
  16. Microsoft Graph Security Tool MCP Server - All 5 Operations

    Need help? Want access to this workflow + many more paid workflows + live Q&A sessions with a top verified n8n creator? [Join the community](https://www.skool.com/beyond-nodes-automation-lab-2006/about) Complete MCP server exposing all Microsoft Graph Security tool operations to AI agents. Zero configuration needed - all 5 operations pre-built. ## Quick Setup 1. **Import** this workflow into your n8n instance 2. **Activate** the workflow to start your MCP server 3. **Copy** the webhook URL from the MCP trigger node 4. **Connect** AI agents using the MCP URL ## How it Works **MCP Trigger**: Serves as your server endpoint for AI agent requests **Tool Nodes**: Pre-configured for every Microsoft Graph Security tool operation **AI Expressions**: Automatically populate parameters via `$fromAI()` placeholders **Native Integration**: Uses official n8n Microsoft Graph Security tool with full error handling ## Available Operations (5 total) Every possible Microsoft Graph Security tool operation is included: ### Secure Score (2 operations) **Get a secure score** **Get many secure scores** ### Secure Score Control Profile (3 operations) **Get a secure score control profile** **Get many secure score control profiles** **Update a secure score control profile** ## AI Integration **Parameter Handling**: AI agents automatically provide values for: - Resource IDs and identifiers - Search queries and filters - Content and data payloads - Configuration options **Response Format**: Native Microsoft Graph Security tool API responses with full data structure **Error Handling**: Built-in n8n error management and retry logic ## Usage Examples Connect this MCP server to any AI agent or workflow: **Claude Desktop**: Add MCP server URL to configuration **Custom AI Apps**: Use MCP URL as tool endpoint **Other n8n Workflows**: Call MCP tools from any workflow **API Integration**: Direct HTTP calls to MCP endpoints ## Benefits **Complete Coverage**: Every Microsoft Graph Security tool operation available **Zero Setup**: No parameter mapping or configuration needed **AI-Ready**: Built-in `$fromAI()` expressions for all parameters **Production Ready**: Native n8n error 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.99
  17. Automate qBittorrent Throttling Based on Plex Activity

    Automatically manage qBittorrent download speeds based on Plex media activity to optimize bandwidth usage when streaming remotely.

    n8n$14.99
  18. Automated URL and IP Threat Analysis with GreyNoise and VirusTotal

    This n8n workflow automates the process of analyzing URLs and IP addresses for potential threats using GreyNoise and VirusTotal. It provides a comprehensive threat intelligence report via email or Slack.

    n8n$14.99
  19. Execute Set Node Based on Function Output

    This n8n workflow uses a Manual Trigger to start, then a Function node processes input logic to produce a boolean output. That output feeds into an IF node, which conditionally activates a Set node to update fields. It demonstrates how to control node execution based on custom function logic, helpful for users building conditional automations in n8n.

    n8n$4.99
  20. Receive and Analyze Emails with Rules in Sublime Security

    This n8n workflow provides a comprehensive automation solution for processing email attachments, specifically targeting enhanced security protocols for organizations that use platforms like Outlook. It starts with the IMAP node, which is set to ingest emails and identify those with .eml attachments. Once an email with an attachment is ingested, the workflow progresses to a conditional operation where it checks for the presence of attachments. If an attachment is found, the binary data is moved and converted to JSON format, preparing it for further analysis. This meticulous approach to detecting attachments is crucial for maintaining a robust security posture, allowing for the proactive identification and handling of potentially malicious content. In the subsequent stage, the workflow leverages the capabilities of Sublime Security by analyzing the email attachment. The binary file is scrutinized for threats, and upon detection, the information is split into matched and unmatched data. This process not only speeds up the threat detection mechanism but also ensures compatibility with other systems, such as Slack, resulting in a smooth and efficient workflow. This automation emphasizes operational efficiency with minimal user involvement, enhancing the organization's defense against cyber threats. The final phase of the workflow involves preparing the output for a Slack report. Whether a threat is detected or not, n8n ensures that stakeholders are immediately informed by dispatching comprehensive reports or notifications to Slack channels. This promotes a culture of transparency and prompt action within the team.

    n8n$9.99
  21. Automate Azure DevOps Work Item Creation from Elasticsearch Alerts

    This workflow automatically creates a work item in Azure DevOps whenever an alert is detected in Elasticsearch, streamlining incident management and ensuring prompt attention to system issues.

    n8n$4.99
  22. ← PreviousPage 5 of 19Next →

    Related categories

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

    Need a custom it & development workflow?

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

    Request a Custom Workflow