Oracle GoldenGate · Capability

Oracle GoldenGate REST API — Certificates

Oracle GoldenGate REST API — Certificates. 3 operations. Lead operation: Oracle Goldengate Retrieve Available Certificate Types. Self-contained Naftiko capability covering one Oracle Goldengate business surface.

Run with Naftiko Oracle GoldengateCertificates

What You Can Do

GET
Listcertificatetypes — Oracle Goldengate Retrieve Available Certificate Types
/v1/services/v2/certificates
GET
Listcertificates — Oracle Goldengate Retrieve Certificate Names
/v1/services/v2/certificates/{type}
GET
Getcertificate — Oracle Goldengate Retrieve a Certificate
/v1/services/v2/certificates/{type}/{certificate}

MCP Tools

oracle-goldengate-retrieve-available-certificate

Oracle Goldengate Retrieve Available Certificate Types

read-only idempotent
oracle-goldengate-retrieve-certificate-names

Oracle Goldengate Retrieve Certificate Names

read-only idempotent
oracle-goldengate-retrieve-certificate

Oracle Goldengate Retrieve a Certificate

read-only idempotent

Capability Spec

rest-certificates.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle GoldenGate REST API — Certificates
  description: 'Oracle GoldenGate REST API — Certificates. 3 operations. Lead operation: Oracle Goldengate Retrieve Available
    Certificate Types. Self-contained Naftiko capability covering one Oracle Goldengate business surface.'
  tags:
  - Oracle Goldengate
  - Certificates
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ORACLE_GOLDENGATE_API_KEY: ORACLE_GOLDENGATE_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-certificates
    baseUri: https://{goldengate-host}:{port}
    description: Oracle GoldenGate REST API — Certificates business capability. Self-contained, no shared references.
    resources:
    - name: services-v2-certificates
      path: /services/v2/certificates
      operations:
      - name: listcertificatetypes
        method: GET
        description: Oracle Goldengate Retrieve Available Certificate Types
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: services-v2-certificates-type
      path: /services/v2/certificates/{type}
      operations:
      - name: listcertificates
        method: GET
        description: Oracle Goldengate Retrieve Certificate Names
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: type
          in: path
          type: string
          required: true
    - name: services-v2-certificates-type-certificate
      path: /services/v2/certificates/{type}/{certificate}
      operations:
      - name: getcertificate
        method: GET
        description: Oracle Goldengate Retrieve a Certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: type
          in: path
          type: string
          required: true
        - name: certificate
          in: path
          type: string
          required: true
    authentication:
      type: basic
      username: '{{env.ORACLE_GOLDENGATE_USER}}'
      password: '{{env.ORACLE_GOLDENGATE_PASS}}'
  exposes:
  - type: rest
    namespace: rest-certificates-rest
    port: 8080
    description: REST adapter for Oracle GoldenGate REST API — Certificates. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/services/v2/certificates
      name: services-v2-certificates
      description: REST surface for services-v2-certificates.
      operations:
      - method: GET
        name: listcertificatetypes
        description: Oracle Goldengate Retrieve Available Certificate Types
        call: rest-certificates.listcertificatetypes
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/services/v2/certificates/{type}
      name: services-v2-certificates-type
      description: REST surface for services-v2-certificates-type.
      operations:
      - method: GET
        name: listcertificates
        description: Oracle Goldengate Retrieve Certificate Names
        call: rest-certificates.listcertificates
        with:
          type: rest.type
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/services/v2/certificates/{type}/{certificate}
      name: services-v2-certificates-type-certificate
      description: REST surface for services-v2-certificates-type-certificate.
      operations:
      - method: GET
        name: getcertificate
        description: Oracle Goldengate Retrieve a Certificate
        call: rest-certificates.getcertificate
        with:
          type: rest.type
          certificate: rest.certificate
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-certificates-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle GoldenGate REST API — Certificates. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: oracle-goldengate-retrieve-available-certificate
      description: Oracle Goldengate Retrieve Available Certificate Types
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-certificates.listcertificatetypes
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-goldengate-retrieve-certificate-names
      description: Oracle Goldengate Retrieve Certificate Names
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-certificates.listcertificates
      with:
        type: tools.type
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-goldengate-retrieve-certificate
      description: Oracle Goldengate Retrieve a Certificate
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-certificates.getcertificate
      with:
        type: tools.type
        certificate: tools.certificate
      outputParameters:
      - type: object
        mapping: $.