Microsoft Azure · Capability

Microsoft Azure Azure Container Registry API

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

Run with Naftiko Microsoft Azure

What You Can Do

GET
Taglist — Microsoft Azure List Tags
/v1/acr/v1/{name}/tags
GET
Taggetattributes — Microsoft Azure Get Tag Attributes
/v1/acr/v1/{name}/tags/{reference}
DELETE
Tagdelete — Microsoft Azure Delete a Tag
/v1/acr/v1/{name}/tags/{reference}

MCP Tools

microsoft-azure-list-tags

Microsoft Azure List Tags

read-only idempotent
microsoft-azure-get-tag-attributes

Microsoft Azure Get Tag Attributes

read-only idempotent
microsoft-azure-delete-tag

Microsoft Azure Delete a Tag

idempotent

Capability Spec

azure-container-registry-general.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Azure Azure Container Registry API
  description: 'Microsoft Azure Azure Container Registry API. 3 operations. Lead operation: Microsoft Azure List Tags. Self-contained
    Naftiko capability covering one Microsoft Azure business surface.'
  tags:
  - Microsoft Azure
  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-general
    baseUri: https://{registryName}.azurecr.io
    description: Microsoft Azure Azure Container Registry API business capability. Self-contained, no shared references.
    resources:
    - name: acr-v1-name-_tags
      path: /acr/v1/{name}/_tags
      operations:
      - name: taglist
        method: GET
        description: Microsoft Azure List Tags
        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 tags to return.
        - name: orderby
          in: query
          type: string
          description: Orderby query parameter.
        - name: digest
          in: query
          type: string
          description: Filter by digest.
    - name: acr-v1-name-_tags-reference
      path: /acr/v1/{name}/_tags/{reference}
      operations:
      - name: taggetattributes
        method: GET
        description: Microsoft Azure Get Tag Attributes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: reference
          in: path
          type: string
          description: Tag name.
          required: true
      - name: tagdelete
        method: DELETE
        description: Microsoft Azure Delete a Tag
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: reference
          in: path
          type: string
          description: Tag name.
          required: true
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_AZURE_API_KEY}}'
  exposes:
  - type: rest
    namespace: azure-container-registry-general-rest
    port: 8080
    description: REST adapter for Microsoft Azure Azure Container Registry API. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/acr/v1/{name}/tags
      name: acr-v1-name-tags
      description: REST surface for acr-v1-name-_tags.
      operations:
      - method: GET
        name: taglist
        description: Microsoft Azure List Tags
        call: azure-container-registry-general.taglist
        with:
          last: rest.last
          n: rest.n
          orderby: rest.orderby
          digest: rest.digest
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/acr/v1/{name}/tags/{reference}
      name: acr-v1-name-tags-reference
      description: REST surface for acr-v1-name-_tags-reference.
      operations:
      - method: GET
        name: taggetattributes
        description: Microsoft Azure Get Tag Attributes
        call: azure-container-registry-general.taggetattributes
        with:
          reference: rest.reference
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: tagdelete
        description: Microsoft Azure Delete a Tag
        call: azure-container-registry-general.tagdelete
        with:
          reference: rest.reference
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: azure-container-registry-general-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Azure Azure Container Registry API. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: microsoft-azure-list-tags
      description: Microsoft Azure List Tags
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: azure-container-registry-general.taglist
      with:
        last: tools.last
        n: tools.n
        orderby: tools.orderby
        digest: tools.digest
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-azure-get-tag-attributes
      description: Microsoft Azure Get Tag Attributes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: azure-container-registry-general.taggetattributes
      with:
        reference: tools.reference
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-azure-delete-tag
      description: Microsoft Azure Delete a Tag
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: azure-container-registry-general.tagdelete
      with:
        reference: tools.reference
      outputParameters:
      - type: object
        mapping: $.