Schema Evolution · Capability

Confluent Schema Registry API — Config

Confluent Schema Registry API — Config. 6 operations. Lead operation: Get global compatibility configuration. Self-contained Naftiko capability covering one Schema Evolution business surface.

Run with Naftiko Schema EvolutionConfig

What You Can Do

GET
Get — Get global compatibility configuration
/v1/config
PUT
Put — Update global compatibility configuration
/v1/config
DELETE
Delete — Reset global compatibility configuration
/v1/config
GET
Get — Get subject-level compatibility configuration
/v1/config/{subject}
PUT
Put — Update subject-level compatibility configuration
/v1/config/{subject}
DELETE
Delete — Reset subject-level compatibility configuration
/v1/config/{subject}

MCP Tools

get-global-compatibility-configuration

Get global compatibility configuration

read-only idempotent
update-global-compatibility-configuration

Update global compatibility configuration

idempotent
reset-global-compatibility-configuration

Reset global compatibility configuration

idempotent
get-subject-level-compatibility-configuration

Get subject-level compatibility configuration

read-only idempotent
update-subject-level-compatibility-configuration

Update subject-level compatibility configuration

idempotent
reset-subject-level-compatibility-configuration

Reset subject-level compatibility configuration

idempotent

Capability Spec

schema-evolution-config.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Confluent Schema Registry API — Config
  description: 'Confluent Schema Registry API — Config. 6 operations. Lead operation: Get global compatibility configuration.
    Self-contained Naftiko capability covering one Schema Evolution business surface.'
  tags:
  - Schema Evolution
  - Config
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SCHEMA_EVOLUTION_API_KEY: SCHEMA_EVOLUTION_API_KEY
capability:
  consumes:
  - type: http
    namespace: schema-evolution-config
    baseUri: https://your-schema-registry-host
    description: Confluent Schema Registry API — Config business capability. Self-contained, no shared references.
    resources:
    - name: config
      path: /config
      operations:
      - name: get
        method: GET
        description: Get global compatibility configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: put
        method: PUT
        description: Update global compatibility configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: delete
        method: DELETE
        description: Reset global compatibility configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: config-subject
      path: /config/{subject}
      operations:
      - name: get
        method: GET
        description: Get subject-level compatibility configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: put
        method: PUT
        description: Update subject-level compatibility configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: delete
        method: DELETE
        description: Reset subject-level compatibility configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: schema-evolution-config-rest
    port: 8080
    description: REST adapter for Confluent Schema Registry API — Config. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/config
      name: config
      description: REST surface for config.
      operations:
      - method: GET
        name: get
        description: Get global compatibility configuration
        call: schema-evolution-config.get
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: put
        description: Update global compatibility configuration
        call: schema-evolution-config.put
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: delete
        description: Reset global compatibility configuration
        call: schema-evolution-config.delete
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/config/{subject}
      name: config-subject
      description: REST surface for config-subject.
      operations:
      - method: GET
        name: get
        description: Get subject-level compatibility configuration
        call: schema-evolution-config.get
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: put
        description: Update subject-level compatibility configuration
        call: schema-evolution-config.put
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: delete
        description: Reset subject-level compatibility configuration
        call: schema-evolution-config.delete
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: schema-evolution-config-mcp
    port: 9090
    transport: http
    description: MCP adapter for Confluent Schema Registry API — Config. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-global-compatibility-configuration
      description: Get global compatibility configuration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: schema-evolution-config.get
      outputParameters:
      - type: object
        mapping: $.
    - name: update-global-compatibility-configuration
      description: Update global compatibility configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: schema-evolution-config.put
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: reset-global-compatibility-configuration
      description: Reset global compatibility configuration
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: schema-evolution-config.delete
      outputParameters:
      - type: object
        mapping: $.
    - name: get-subject-level-compatibility-configuration
      description: Get subject-level compatibility configuration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: schema-evolution-config.get
      outputParameters:
      - type: object
        mapping: $.
    - name: update-subject-level-compatibility-configuration
      description: Update subject-level compatibility configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: schema-evolution-config.put
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: reset-subject-level-compatibility-configuration
      description: Reset subject-level compatibility configuration
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: schema-evolution-config.delete
      outputParameters:
      - type: object
        mapping: $.