Progressive · Capability

Progressive Certificate of Insurance API — Certificates

Progressive Certificate of Insurance API — Certificates. 2 operations. Lead operation: List certificates. Self-contained Naftiko capability covering one Progressive business surface.

Run with Naftiko ProgressiveCertificates

What You Can Do

GET
Listcertificates — List certificates
/v1/certificates
POST
Createcertificate — Create a certificate
/v1/certificates

MCP Tools

list-certificates

List certificates

read-only idempotent
create-certificate

Create a certificate

Capability Spec

certificate-of-insurance-certificates.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Progressive Certificate of Insurance API — Certificates
  description: 'Progressive Certificate of Insurance API — Certificates. 2 operations. Lead operation: List certificates.
    Self-contained Naftiko capability covering one Progressive business surface.'
  tags:
  - Progressive
  - Certificates
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PROGRESSIVE_API_KEY: PROGRESSIVE_API_KEY
capability:
  consumes:
  - type: http
    namespace: certificate-of-insurance-certificates
    baseUri: https://api.progressive.com
    description: Progressive Certificate of Insurance API — Certificates business capability. Self-contained, no shared references.
    resources:
    - name: certificates
      path: /certificates
      operations:
      - name: listcertificates
        method: GET
        description: List certificates
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcertificate
        method: POST
        description: Create a 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.PROGRESSIVE_API_KEY}}'
  exposes:
  - type: rest
    namespace: certificate-of-insurance-certificates-rest
    port: 8080
    description: REST adapter for Progressive Certificate of Insurance 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: List certificates
        call: certificate-of-insurance-certificates.listcertificates
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcertificate
        description: Create a certificate
        call: certificate-of-insurance-certificates.createcertificate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: certificate-of-insurance-certificates-mcp
    port: 9090
    transport: http
    description: MCP adapter for Progressive Certificate of Insurance API — Certificates. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: list-certificates
      description: List certificates
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: certificate-of-insurance-certificates.listcertificates
      outputParameters:
      - type: object
        mapping: $.
    - name: create-certificate
      description: Create a certificate
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: certificate-of-insurance-certificates.createcertificate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.