Azure Container Registry REST API — Manifests

Azure Container Registry REST API — Manifests. 3 operations. Lead operation: ACR Get manifest. Self-contained Naftiko capability covering one Microsoft Azure Container Registry business surface.

Run with Naftiko Microsoft Azure Container RegistryManifests

What You Can Do

GET
Getmanifest — ACR Get manifest
/v1/v2/{name}/manifests/{reference}
PUT
Putmanifest — ACR Put manifest
/v1/v2/{name}/manifests/{reference}
DELETE
Deletemanifest — ACR Delete manifest
/v1/v2/{name}/manifests/{reference}

MCP Tools

acr-get-manifest

ACR Get manifest

read-only idempotent
acr-put-manifest

ACR Put manifest

idempotent
acr-delete-manifest

ACR Delete manifest

idempotent

Capability Spec

microsoft-azure-container-registry-manifests.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Azure Container Registry REST API — Manifests
  description: 'Azure Container Registry REST API — Manifests. 3 operations. Lead operation: ACR Get manifest. Self-contained
    Naftiko capability covering one Microsoft Azure Container Registry business surface.'
  tags:
  - Microsoft Azure Container Registry
  - Manifests
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_AZURE_CONTAINER_REGISTRY_API_KEY: MICROSOFT_AZURE_CONTAINER_REGISTRY_API_KEY
capability:
  consumes:
  - type: http
    namespace: microsoft-azure-container-registry-manifests
    baseUri: https://{registry}.azurecr.io
    description: Azure Container Registry REST API — Manifests business capability. Self-contained, no shared references.
    resources:
    - name: v2-name-manifests-reference
      path: /v2/{name}/manifests/{reference}
      operations:
      - name: getmanifest
        method: GET
        description: ACR Get manifest
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: putmanifest
        method: PUT
        description: ACR Put manifest
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletemanifest
        method: DELETE
        description: ACR Delete manifest
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_AZURE_CONTAINER_REGISTRY_API_KEY}}'
  exposes:
  - type: rest
    namespace: microsoft-azure-container-registry-manifests-rest
    port: 8080
    description: REST adapter for Azure Container Registry REST API — Manifests. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/v2/{name}/manifests/{reference}
      name: v2-name-manifests-reference
      description: REST surface for v2-name-manifests-reference.
      operations:
      - method: GET
        name: getmanifest
        description: ACR Get manifest
        call: microsoft-azure-container-registry-manifests.getmanifest
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: putmanifest
        description: ACR Put manifest
        call: microsoft-azure-container-registry-manifests.putmanifest
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletemanifest
        description: ACR Delete manifest
        call: microsoft-azure-container-registry-manifests.deletemanifest
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: microsoft-azure-container-registry-manifests-mcp
    port: 9090
    transport: http
    description: MCP adapter for Azure Container Registry REST API — Manifests. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: acr-get-manifest
      description: ACR Get manifest
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-azure-container-registry-manifests.getmanifest
      outputParameters:
      - type: object
        mapping: $.
    - name: acr-put-manifest
      description: ACR Put manifest
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: microsoft-azure-container-registry-manifests.putmanifest
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: acr-delete-manifest
      description: ACR Delete manifest
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: microsoft-azure-container-registry-manifests.deletemanifest
      outputParameters:
      - type: object
        mapping: $.