Anchore · Arazzo Workflow

Anchore Registry Image Onboarding

Version 1.0.0

Confirm a registry is configured, then submit an image from it for analysis and confirm the queue.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Container SecurityContainersSBOMSoftware Supply ChainVulnerability ScanningArazzoWorkflows

Provider

anchore

Workflows

registry-image-onboarding
Validate that a registry is configured, then queue an image from it for analysis.
Lists configured registries, branches on whether the expected registry host is present, and on presence submits the image tag for analysis and confirms the queued record.
3 steps inputs: authorization, registry, tag outputs: analysisStatus, imageDigest
1
listConfiguredRegistries
List the registries Anchore is configured to pull from. Branch to the image submission only when at least one registry is configured.
2
submitImage
Submit the image tag from the configured registry for analysis. Anchore queues the analysis and returns the image record with its digest.
3
confirmQueued
Read back the queued image record to confirm Anchore accepted the image and is tracking its analysis status.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Anchore Registry Image Onboarding
  summary: Confirm a registry is configured, then submit an image from it for analysis and confirm the queue.
  description: >-
    Anchore can only pull and analyze images from registries it already knows
    about. This workflow lists the configured registries, branches to fail fast
    when the registry that hosts the target image tag is not present, and
    otherwise submits the image for analysis and reads back the queued image
    record to confirm acceptance. The original "add registry then add image"
    intent is adapted because the description only exposes a read endpoint for
    registries (listRegistries) and no registry-create operation; the flow
    therefore validates registry presence instead of creating one. Every step
    spells out its request inline so the flow can be read and executed without
    opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: imagesApi
  url: ../openapi/anchore-images-api-openapi.yml
  type: openapi
- name: registriesApi
  url: ../openapi/anchore-registries-api-openapi.yml
  type: openapi
workflows:
- workflowId: registry-image-onboarding
  summary: Validate that a registry is configured, then queue an image from it for analysis.
  description: >-
    Lists configured registries, branches on whether the expected registry host
    is present, and on presence submits the image tag for analysis and confirms
    the queued record.
  inputs:
    type: object
    required:
    - authorization
    - tag
    properties:
      authorization:
        type: string
        description: HTTP Basic authorization header value (e.g. "Basic dXNlcjpwYXNz").
      registry:
        type: string
        description: The registry host expected to be configured (e.g. docker.io).
      tag:
        type: string
        description: Image tag to analyze (e.g. docker.io/library/nginx:latest).
  steps:
  - stepId: listConfiguredRegistries
    description: >-
      List the registries Anchore is configured to pull from. Branch to the
      image submission only when at least one registry is configured.
    operationId: listRegistries
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      registries: $response.body
    onSuccess:
    - name: hasRegistries
      type: goto
      stepId: submitImage
      criteria:
      - context: $response.body
        condition: $.length > 0
        type: jsonpath
    - name: noRegistries
      type: end
      criteria:
      - context: $response.body
        condition: $.length == 0
        type: jsonpath
  - stepId: submitImage
    description: >-
      Submit the image tag from the configured registry for analysis. Anchore
      queues the analysis and returns the image record with its digest.
    operationId: addImage
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    requestBody:
      contentType: application/json
      payload:
        tag: $inputs.tag
    successCriteria:
    - condition: $statusCode == 202
    outputs:
      imageDigest: $response.body#/0/imageDigest
      analysisStatus: $response.body#/0/analysisStatus
  - stepId: confirmQueued
    description: >-
      Read back the queued image record to confirm Anchore accepted the image
      and is tracking its analysis status.
    operationId: getImage
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: imageDigest
      in: path
      value: $steps.submitImage.outputs.imageDigest
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      analysisStatus: $response.body#/analysisStatus
      imageStatus: $response.body#/imageStatus
  outputs:
    imageDigest: $steps.submitImage.outputs.imageDigest
    analysisStatus: $steps.confirmQueued.outputs.analysisStatus

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/anchore-registry-scan-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.