Microsoft Azure · Capability

Microsoft Azure Azure Container Registry API — Manifests

Microsoft Azure Azure Container Registry API — Manifests. 4 operations. Lead operation: Microsoft Azure List Manifests. Self-contained Naftiko capability covering one Microsoft Azure business surface.

Run with Naftiko Microsoft AzureManifests

What You Can Do

GET
Manifestslist — Microsoft Azure List Manifests
/v1/acr/v1/{name}/manifests
GET
Manifestsget — Microsoft Azure Get a Manifest
/v1/v2/{name}/manifests/{reference}
PUT
Manifestscreate — Microsoft Azure Put a Manifest
/v1/v2/{name}/manifests/{reference}
DELETE
Manifestsdelete — Microsoft Azure Delete a Manifest
/v1/v2/{name}/manifests/{reference}

MCP Tools

microsoft-azure-list-manifests

Microsoft Azure List Manifests

read-only idempotent
microsoft-azure-get-manifest

Microsoft Azure Get a Manifest

read-only idempotent
microsoft-azure-put-manifest

Microsoft Azure Put a Manifest

idempotent
microsoft-azure-delete-manifest

Microsoft Azure Delete a Manifest

idempotent

Capability Spec

azure-container-registry-manifests.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Azure Azure Container Registry API — Manifests
  description: 'Microsoft Azure Azure Container Registry API — Manifests. 4 operations. Lead operation: Microsoft Azure List
    Manifests. Self-contained Naftiko capability covering one Microsoft Azure business surface.'
  tags:
  - Microsoft Azure
  - Manifests
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_AZURE_API_KEY: MICROSOFT_AZURE_API_KEY
capability:
  consumes:
  - type: http
    namespace: azure-container-registry-manifests
    baseUri: https://{registryName}.azurecr.io
    description: Microsoft Azure Azure Container Registry API — Manifests business capability. Self-contained, no shared references.
    resources:
    - name: acr-v1-name-_manifests
      path: /acr/v1/{name}/_manifests
      operations:
      - name: manifestslist
        method: GET
        description: Microsoft Azure List Manifests
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: last
          in: query
          type: string
          description: Query parameter for the last item in previous call.
        - name: n
          in: query
          type: integer
          description: Number of manifests to return.
        - name: orderby
          in: query
          type: string
          description: Orderby query parameter.
    - name: v2-name-manifests-reference
      path: /v2/{name}/manifests/{reference}
      operations:
      - name: manifestsget
        method: GET
        description: Microsoft Azure Get a Manifest
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: reference
          in: path
          type: string
          description: A tag or a digest, pointing to a specific image.
          required: true
        - name: Accept
          in: header
          type: string
          description: Accept header string delimited by comma.
      - name: manifestscreate
        method: PUT
        description: Microsoft Azure Put a Manifest
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: reference
          in: path
          type: string
          description: A tag or a digest, pointing to a specific image.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: manifestsdelete
        method: DELETE
        description: Microsoft Azure Delete a Manifest
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: reference
          in: path
          type: string
          description: Digest of a manifest.
          required: true
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_AZURE_API_KEY}}'
  exposes:
  - type: rest
    namespace: azure-container-registry-manifests-rest
    port: 8080
    description: REST adapter for Microsoft Azure Azure Container Registry API — Manifests. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/acr/v1/{name}/manifests
      name: acr-v1-name-manifests
      description: REST surface for acr-v1-name-_manifests.
      operations:
      - method: GET
        name: manifestslist
        description: Microsoft Azure List Manifests
        call: azure-container-registry-manifests.manifestslist
        with:
          last: rest.last
          n: rest.n
          orderby: rest.orderby
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/{name}/manifests/{reference}
      name: v2-name-manifests-reference
      description: REST surface for v2-name-manifests-reference.
      operations:
      - method: GET
        name: manifestsget
        description: Microsoft Azure Get a Manifest
        call: azure-container-registry-manifests.manifestsget
        with:
          reference: rest.reference
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: manifestscreate
        description: Microsoft Azure Put a Manifest
        call: azure-container-registry-manifests.manifestscreate
        with:
          reference: rest.reference
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: manifestsdelete
        description: Microsoft Azure Delete a Manifest
        call: azure-container-registry-manifests.manifestsdelete
        with:
          reference: rest.reference
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: azure-container-registry-manifests-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Azure Azure Container Registry API — Manifests. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: microsoft-azure-list-manifests
      description: Microsoft Azure List Manifests
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: azure-container-registry-manifests.manifestslist
      with:
        last: tools.last
        n: tools.n
        orderby: tools.orderby
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-azure-get-manifest
      description: Microsoft Azure Get a Manifest
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: azure-container-registry-manifests.manifestsget
      with:
        reference: tools.reference
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-azure-put-manifest
      description: Microsoft Azure Put a Manifest
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: azure-container-registry-manifests.manifestscreate
      with:
        reference: tools.reference
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-azure-delete-manifest
      description: Microsoft Azure Delete a Manifest
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: azure-container-registry-manifests.manifestsdelete
      with:
        reference: tools.reference
      outputParameters:
      - type: object
        mapping: $.