Microsoft Azure · Capability

Microsoft Azure Azure Key Vault API — Certificates

Microsoft Azure Azure Key Vault API — Certificates. 2 operations. Lead operation: Microsoft Azure List Certificates. Self-contained Naftiko capability covering one Microsoft Azure business surface.

Run with Naftiko Microsoft AzureCertificates

What You Can Do

GET
Certificateslist — Microsoft Azure List Certificates
/v1/certificates
POST
Certificatescreate — Microsoft Azure Create a Certificate
/v1/certificates/{certificate-name}/create

MCP Tools

microsoft-azure-list-certificates

Microsoft Azure List Certificates

read-only idempotent
microsoft-azure-create-certificate

Microsoft Azure Create a Certificate

Capability Spec

azure-key-vault-certificates.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Azure Azure Key Vault API — Certificates
  description: 'Microsoft Azure Azure Key Vault API — Certificates. 2 operations. Lead operation: Microsoft Azure List Certificates.
    Self-contained Naftiko capability covering one Microsoft Azure business surface.'
  tags:
  - Microsoft Azure
  - Certificates
  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-key-vault-certificates
    baseUri: https://{vaultName}.vault.azure.net
    description: Microsoft Azure Azure Key Vault API — Certificates business capability. Self-contained, no shared references.
    resources:
    - name: certificates
      path: /certificates
      operations:
      - name: certificateslist
        method: GET
        description: Microsoft Azure List Certificates
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: maxresults
          in: query
          type: integer
          description: Maximum number of results to return in a page (1-25).
        - name: includePending
          in: query
          type: boolean
          description: Whether to include certificates that are not fully provisioned.
    - name: certificates-certificate-name-create
      path: /certificates/{certificate-name}/create
      operations:
      - name: certificatescreate
        method: POST
        description: Microsoft Azure Create a Certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: certificate-name
          in: path
          type: string
          description: The name of the certificate.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_AZURE_API_KEY}}'
  exposes:
  - type: rest
    namespace: azure-key-vault-certificates-rest
    port: 8080
    description: REST adapter for Microsoft Azure Azure Key Vault API — Certificates. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/certificates
      name: certificates
      description: REST surface for certificates.
      operations:
      - method: GET
        name: certificateslist
        description: Microsoft Azure List Certificates
        call: azure-key-vault-certificates.certificateslist
        with:
          maxresults: rest.maxresults
          includePending: rest.includePending
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/certificates/{certificate-name}/create
      name: certificates-certificate-name-create
      description: REST surface for certificates-certificate-name-create.
      operations:
      - method: POST
        name: certificatescreate
        description: Microsoft Azure Create a Certificate
        call: azure-key-vault-certificates.certificatescreate
        with:
          certificate-name: rest.certificate-name
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: azure-key-vault-certificates-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Azure Azure Key Vault API — Certificates. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: microsoft-azure-list-certificates
      description: Microsoft Azure List Certificates
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: azure-key-vault-certificates.certificateslist
      with:
        maxresults: tools.maxresults
        includePending: tools.includePending
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-azure-create-certificate
      description: Microsoft Azure Create a Certificate
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: azure-key-vault-certificates.certificatescreate
      with:
        certificate-name: tools.certificate-name
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.