> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# servicenow-aiops-leap

> ServiceNow AIOps LEAP - automation opportunities, associated records, and steps

**Server path:** `/servicenow-aiops-leap` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                                          | Description                                          |
| ------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------- |
| [`servicenow_aiops_leap_get_associated_records`](#servicenow_aiops_leap_get_associated_records)               | Get associated records for an automation opportunity |
| [`servicenow_aiops_leap_get_steps`](#servicenow_aiops_leap_get_steps)                                         | Get steps for an automation opportunity              |
| [`servicenow_aiops_leap_list_automation_opportunities`](#servicenow_aiops_leap_list_automation_opportunities) | List all automation opportunities                    |

***

## servicenow\_aiops\_leap\_get\_associated\_records

Get associated records for an automation opportunity

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                          |
| ---------- | ------ | -------- | ------- | ---------------------------------------------------- |
| `recordId` | string | Yes      | —       | Automation opportunity record ID (e.g., AOPP0000006) |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "recordId": {
        "type": "string",
        "description": "Automation opportunity record ID (e.g., AOPP0000006)"
      }
    },
    "required": [
      "PCID",
      "recordId"
    ]
  }
  ```
</Expandable>

***

## servicenow\_aiops\_leap\_get\_steps

Get steps for an automation opportunity

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                          |
| ---------- | ------ | -------- | ------- | ---------------------------------------------------- |
| `recordId` | string | Yes      | —       | Automation opportunity record ID (e.g., AOPP0000006) |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "recordId": {
        "type": "string",
        "description": "Automation opportunity record ID (e.g., AOPP0000006)"
      }
    },
    "required": [
      "PCID",
      "recordId"
    ]
  }
  ```
</Expandable>

***

## servicenow\_aiops\_leap\_list\_automation\_opportunities

List all automation opportunities

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>
