SSL/TLS · Capability

SSL/TLS Certificate Management API — Domains

SSL/TLS Certificate Management API — Domains. 2 operations. Lead operation: List Domains. Self-contained Naftiko capability covering one Ssl Tls business surface.

Run with Naftiko Ssl TlsDomains

What You Can Do

GET
Listdomains — List Domains
/v1/domains
POST
Verifychallenge — Verify Domain Challenge
/v1/orders/{orderid}/challenges/{challengeid}/verify

MCP Tools

list-domains

List Domains

read-only idempotent
verify-domain-challenge

Verify Domain Challenge

Capability Spec

certificate-management-domains.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SSL/TLS Certificate Management API — Domains
  description: 'SSL/TLS Certificate Management API — Domains. 2 operations. Lead operation: List Domains. Self-contained Naftiko
    capability covering one Ssl Tls business surface.'
  tags:
  - Ssl Tls
  - Domains
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SSL_TLS_API_KEY: SSL_TLS_API_KEY
capability:
  consumes:
  - type: http
    namespace: certificate-management-domains
    baseUri: https://api.certmanager.example.com/v1
    description: SSL/TLS Certificate Management API — Domains business capability. Self-contained, no shared references.
    resources:
    - name: domains
      path: /domains
      operations:
      - name: listdomains
        method: GET
        description: List Domains
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: orders-orderId-challenges-challengeId-verify
      path: /orders/{orderId}/challenges/{challengeId}/verify
      operations:
      - name: verifychallenge
        method: POST
        description: Verify Domain Challenge
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orderId
          in: path
          type: string
          required: true
        - name: challengeId
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.SSL_TLS_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: certificate-management-domains-rest
    port: 8080
    description: REST adapter for SSL/TLS Certificate Management API — Domains. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/domains
      name: domains
      description: REST surface for domains.
      operations:
      - method: GET
        name: listdomains
        description: List Domains
        call: certificate-management-domains.listdomains
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/orders/{orderid}/challenges/{challengeid}/verify
      name: orders-orderid-challenges-challengeid-verify
      description: REST surface for orders-orderId-challenges-challengeId-verify.
      operations:
      - method: POST
        name: verifychallenge
        description: Verify Domain Challenge
        call: certificate-management-domains.verifychallenge
        with:
          orderId: rest.orderId
          challengeId: rest.challengeId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: certificate-management-domains-mcp
    port: 9090
    transport: http
    description: MCP adapter for SSL/TLS Certificate Management API — Domains. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-domains
      description: List Domains
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: certificate-management-domains.listdomains
      outputParameters:
      - type: object
        mapping: $.
    - name: verify-domain-challenge
      description: Verify Domain Challenge
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: certificate-management-domains.verifychallenge
      with:
        orderId: tools.orderId
        challengeId: tools.challengeId
      outputParameters:
      - type: object
        mapping: $.