UiPath · Capability

UiPath Automation Hub API — AppInventory

UiPath Automation Hub API — AppInventory. 3 operations. Lead operation: UiPath List Application Inventory. Self-contained Naftiko capability covering one Uipath business surface.

Run with Naftiko UipathAppInventory

What You Can Do

GET
Listappinventory — UiPath List Application Inventory
/v1/appinventory
PUT
Bulkupsertappinventory — UiPath Bulk Add or Update Application Inventory
/v1/appinventory
DELETE
Deleteapplication — UiPath Delete an Application from Inventory
/v1/appinventory/{applicationid}

MCP Tools

uipath-list-application-inventory

UiPath List Application Inventory

read-only idempotent
uipath-bulk-add-update-application

UiPath Bulk Add or Update Application Inventory

idempotent
uipath-delete-application-inventory

UiPath Delete an Application from Inventory

idempotent

Capability Spec

automation-hub-appinventory.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: UiPath Automation Hub API — AppInventory
  description: 'UiPath Automation Hub API — AppInventory. 3 operations. Lead operation: UiPath List Application Inventory.
    Self-contained Naftiko capability covering one Uipath business surface.'
  tags:
  - Uipath
  - AppInventory
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    UIPATH_API_KEY: UIPATH_API_KEY
capability:
  consumes:
  - type: http
    namespace: automation-hub-appinventory
    baseUri: https://cloud.uipath.com/{orgName}/{tenantName}/automationhub_/api/v1
    description: UiPath Automation Hub API — AppInventory business capability. Self-contained, no shared references.
    resources:
    - name: appinventory
      path: /appinventory
      operations:
      - name: listappinventory
        method: GET
        description: UiPath List Application Inventory
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: integer
          description: Page number for pagination (1-based)
        - name: pageSize
          in: query
          type: integer
          description: Number of records per page
      - name: bulkupsertappinventory
        method: PUT
        description: UiPath Bulk Add or Update Application Inventory
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: appinventory-applicationId
      path: /appinventory/{applicationId}
      operations:
      - name: deleteapplication
        method: DELETE
        description: UiPath Delete an Application from Inventory
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: applicationId
          in: path
          type: integer
          description: Unique identifier of the application to delete
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.UIPATH_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: automation-hub-appinventory-rest
    port: 8080
    description: REST adapter for UiPath Automation Hub API — AppInventory. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/appinventory
      name: appinventory
      description: REST surface for appinventory.
      operations:
      - method: GET
        name: listappinventory
        description: UiPath List Application Inventory
        call: automation-hub-appinventory.listappinventory
        with:
          page: rest.page
          pageSize: rest.pageSize
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: bulkupsertappinventory
        description: UiPath Bulk Add or Update Application Inventory
        call: automation-hub-appinventory.bulkupsertappinventory
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/appinventory/{applicationid}
      name: appinventory-applicationid
      description: REST surface for appinventory-applicationId.
      operations:
      - method: DELETE
        name: deleteapplication
        description: UiPath Delete an Application from Inventory
        call: automation-hub-appinventory.deleteapplication
        with:
          applicationId: rest.applicationId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: automation-hub-appinventory-mcp
    port: 9090
    transport: http
    description: MCP adapter for UiPath Automation Hub API — AppInventory. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: uipath-list-application-inventory
      description: UiPath List Application Inventory
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: automation-hub-appinventory.listappinventory
      with:
        page: tools.page
        pageSize: tools.pageSize
      outputParameters:
      - type: object
        mapping: $.
    - name: uipath-bulk-add-update-application
      description: UiPath Bulk Add or Update Application Inventory
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: automation-hub-appinventory.bulkupsertappinventory
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: uipath-delete-application-inventory
      description: UiPath Delete an Application from Inventory
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: automation-hub-appinventory.deleteapplication
      with:
        applicationId: tools.applicationId
      outputParameters:
      - type: object
        mapping: $.