> For the complete documentation index, see [llms.txt](https://knowledgebase.autorabit.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://knowledgebase.autorabit.com/product-guides/integral-zone/iz-suite/iz-ai/automation-tasks.md).

# Automation Tasks

The following section describes the steps to create AI-driven automated tasks for AI Action Ops using IZ Insights.

### Creating an Automation Task

* Navigate to **`IZ Insights`** -> **`Generate Automation`**.
* Enter the name of the automation task and select the appropriate category:
  * Dev
  * Ops
  * Manager
* Select the task type:
  * utility - Mainly used as a utility which will be invoked by the **`Main`** task type
  * main - Main task
* Configure the following options:
  * **`Include in MCP Server`** – Indicates whether the task should be available as a tool in the MCP server.
  * **`Requires Manual Intervention`** – Indicates whether the task requires human approval or interaction during execution.
* Enter the task parameters in JSON format. Example -

```json
{
  "type": "object",
  "required": [
    "keyword"
  ],
  "properties": {
    "keyword": {
      "type": "string",
      "description": "Keyword to search Organizations. To search for all Organizations assign an empty string to this parameter. Also display a message saying only top 10 search results are being shown if the result size is equal to 10."
    }
  }
}
```

* Upload the required Postman collection that will be executed by the automation task.

### Run Automation Task

* Navigate to **IZ Insights** and choose **Run Automation Task** from the action menu corresponding to the automation task.
* Automation tasks can be executed in two modes:
  * **`Basic`** – Provide task parameters through a simple form.
  * **`Advanced`** – Provide the full parameter definition in JSON format.
* After submission, the execution logs can be viewed under **`Automation Task Logs`**.

### Including the Task in MCP Server

* Navigate to **IZ Insights** and choose **Task Settings** from the action menu corresponding to the automation task.
* Select the appropriate option to either include or exclude the task in MCP Server and **`Submit`**

### Enabling Manual Intervention

* Navigate to **IZ Insights** and choose **Task Settings** from the action menu corresponding to the automation task.
* Select the appropriate option to either enable or disable manual intervention and **`Submit`**

### See Also

* [Code With AI](/product-guides/integral-zone/iz-suite/iz-ai/code-with-ai.md)
* [Automation Task Logs](/product-guides/integral-zone/iz-suite/iz-ai/automation-task-logs.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://knowledgebase.autorabit.com/product-guides/integral-zone/iz-suite/iz-ai/automation-tasks.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
