Microsoft Azure · Capability

Microsoft Azure Azure Blob Storage API — Containers

Microsoft Azure Azure Blob Storage API — Containers. 3 operations. Lead operation: Microsoft Azure Create a Container. Self-contained Naftiko capability covering one Microsoft Azure business surface.

Run with Naftiko Microsoft AzureContainers

What You Can Do

PUT
Containercreate — Microsoft Azure Create a Container
/v1/{containername}
GET
Containerlistblobs — Microsoft Azure List Blobs in a Container
/v1/{containername}
DELETE
Containerdelete — Microsoft Azure Delete a Container
/v1/{containername}

MCP Tools

microsoft-azure-create-container

Microsoft Azure Create a Container

idempotent
microsoft-azure-list-blobs-container

Microsoft Azure List Blobs in a Container

read-only idempotent
microsoft-azure-delete-container

Microsoft Azure Delete a Container

idempotent

Capability Spec

azure-blob-storage-containers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Azure Azure Blob Storage API — Containers
  description: 'Microsoft Azure Azure Blob Storage API — Containers. 3 operations. Lead operation: Microsoft Azure Create
    a Container. Self-contained Naftiko capability covering one Microsoft Azure business surface.'
  tags:
  - Microsoft Azure
  - Containers
  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-blob-storage-containers
    baseUri: https://{accountName}.blob.core.windows.net
    description: Microsoft Azure Azure Blob Storage API — Containers business capability. Self-contained, no shared references.
    resources:
    - name: containerName
      path: /{containerName}
      operations:
      - name: containercreate
        method: PUT
        description: Microsoft Azure Create a Container
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: restype
          in: query
          type: string
          required: true
        - name: x-ms-blob-public-access
          in: header
          type: string
          description: Specifies whether data in the container may be accessed publicly.
        - name: x-ms-meta
          in: header
          type: string
          description: Name-value pairs to associate with the container as metadata.
      - name: containerlistblobs
        method: GET
        description: Microsoft Azure List Blobs in a Container
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: restype
          in: query
          type: string
          required: true
        - name: comp
          in: query
          type: string
          required: true
        - name: prefix
          in: query
          type: string
          description: Filters the results to return only blobs whose name begins with the specified prefix.
        - name: delimiter
          in: query
          type: string
          description: Filters the results to return only blobs with names up to the specified delimiter.
        - name: marker
          in: query
          type: string
          description: A string value that identifies the portion of the list to be returned.
        - name: maxresults
          in: query
          type: integer
          description: Maximum number of blobs to return.
        - name: include
          in: query
          type: string
          description: 'Specifies one or more datasets to include in the response: snapshots, metadata, uncommittedblobs,
            copy, deleted, tags, versions, deletedwithversions, immutabili'
      - name: containerdelete
        method: DELETE
        description: Microsoft Azure Delete a Container
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: restype
          in: query
          type: string
          required: true
        - name: x-ms-lease-id
          in: header
          type: string
          description: Required if the container has an active lease.
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_AZURE_API_KEY}}'
  exposes:
  - type: rest
    namespace: azure-blob-storage-containers-rest
    port: 8080
    description: REST adapter for Microsoft Azure Azure Blob Storage API — Containers. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/{containername}
      name: containername
      description: REST surface for containerName.
      operations:
      - method: PUT
        name: containercreate
        description: Microsoft Azure Create a Container
        call: azure-blob-storage-containers.containercreate
        with:
          restype: rest.restype
          x-ms-blob-public-access: rest.x-ms-blob-public-access
          x-ms-meta: rest.x-ms-meta
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: containerlistblobs
        description: Microsoft Azure List Blobs in a Container
        call: azure-blob-storage-containers.containerlistblobs
        with:
          restype: rest.restype
          comp: rest.comp
          prefix: rest.prefix
          delimiter: rest.delimiter
          marker: rest.marker
          maxresults: rest.maxresults
          include: rest.include
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: containerdelete
        description: Microsoft Azure Delete a Container
        call: azure-blob-storage-containers.containerdelete
        with:
          restype: rest.restype
          x-ms-lease-id: rest.x-ms-lease-id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: azure-blob-storage-containers-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Azure Azure Blob Storage API — Containers. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: microsoft-azure-create-container
      description: Microsoft Azure Create a Container
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: azure-blob-storage-containers.containercreate
      with:
        restype: tools.restype
        x-ms-blob-public-access: tools.x-ms-blob-public-access
        x-ms-meta: tools.x-ms-meta
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-azure-list-blobs-container
      description: Microsoft Azure List Blobs in a Container
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: azure-blob-storage-containers.containerlistblobs
      with:
        restype: tools.restype
        comp: tools.comp
        prefix: tools.prefix
        delimiter: tools.delimiter
        marker: tools.marker
        maxresults: tools.maxresults
        include: tools.include
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-azure-delete-container
      description: Microsoft Azure Delete a Container
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: azure-blob-storage-containers.containerdelete
      with:
        restype: tools.restype
        x-ms-lease-id: tools.x-ms-lease-id
      outputParameters:
      - type: object
        mapping: $.