Boltic · Capability

Boltic Gateway API — Certificates

Boltic Gateway API — Certificates. 2 operations. Lead operation: Boltic List all certificates. Self-contained Naftiko capability covering one Boltic business surface.

Run with Naftiko BolticCertificates

What You Can Do

GET
Listcertificates — Boltic List all certificates
/v1/certificates
POST
Createcertificate — Boltic Upload a new certificate
/v1/certificates

MCP Tools

boltic-list-all-certificates

Boltic List all certificates

read-only idempotent
boltic-upload-new-certificate

Boltic Upload a new certificate

Capability Spec

gateway-certificates.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Boltic Gateway API — Certificates
  description: 'Boltic Gateway API — Certificates. 2 operations. Lead operation: Boltic List all certificates. Self-contained
    Naftiko capability covering one Boltic business surface.'
  tags:
  - Boltic
  - Certificates
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BOLTIC_API_KEY: BOLTIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: gateway-certificates
    baseUri: https://gateway.boltic.io/v1
    description: Boltic Gateway API — Certificates business capability. Self-contained, no shared references.
    resources:
    - name: certificates
      path: /certificates
      operations:
      - name: listcertificates
        method: GET
        description: Boltic List all certificates
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcertificate
        method: POST
        description: Boltic Upload a new certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.BOLTIC_API_KEY}}'
  exposes:
  - type: rest
    namespace: gateway-certificates-rest
    port: 8080
    description: REST adapter for Boltic Gateway 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: listcertificates
        description: Boltic List all certificates
        call: gateway-certificates.listcertificates
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcertificate
        description: Boltic Upload a new certificate
        call: gateway-certificates.createcertificate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: gateway-certificates-mcp
    port: 9090
    transport: http
    description: MCP adapter for Boltic Gateway API — Certificates. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: boltic-list-all-certificates
      description: Boltic List all certificates
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gateway-certificates.listcertificates
      outputParameters:
      - type: object
        mapping: $.
    - name: boltic-upload-new-certificate
      description: Boltic Upload a new certificate
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: gateway-certificates.createcertificate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.