Debezium · Capability

Debezium Kafka Connect REST API — Plugins

Debezium Kafka Connect REST API — Plugins. 2 operations. Lead operation: List installed connector plugins. Self-contained Naftiko capability covering one Debezium business surface.

Run with Naftiko DebeziumPlugins

What You Can Do

GET
Listplugins — List installed connector plugins
/v1/connector-plugins
PUT
Validateconfig — Validate connector configuration
/v1/connector-plugins/{plugin}/config/validate

MCP Tools

list-installed-connector-plugins

List installed connector plugins

read-only idempotent
validate-connector-configuration

Validate connector configuration

idempotent

Capability Spec

connect-plugins.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Debezium Kafka Connect REST API — Plugins
  description: 'Debezium Kafka Connect REST API — Plugins. 2 operations. Lead operation: List installed connector plugins.
    Self-contained Naftiko capability covering one Debezium business surface.'
  tags:
  - Debezium
  - Plugins
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DEBEZIUM_API_KEY: DEBEZIUM_API_KEY
capability:
  consumes:
  - type: http
    namespace: connect-plugins
    baseUri: http://localhost:8083
    description: Debezium Kafka Connect REST API — Plugins business capability. Self-contained, no shared references.
    resources:
    - name: connector-plugins
      path: /connector-plugins
      operations:
      - name: listplugins
        method: GET
        description: List installed connector plugins
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: connector-plugins-plugin-config-validate
      path: /connector-plugins/{plugin}/config/validate
      operations:
      - name: validateconfig
        method: PUT
        description: Validate connector configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: plugin
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: connect-plugins-rest
    port: 8080
    description: REST adapter for Debezium Kafka Connect REST API — Plugins. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/connector-plugins
      name: connector-plugins
      description: REST surface for connector-plugins.
      operations:
      - method: GET
        name: listplugins
        description: List installed connector plugins
        call: connect-plugins.listplugins
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/connector-plugins/{plugin}/config/validate
      name: connector-plugins-plugin-config-validate
      description: REST surface for connector-plugins-plugin-config-validate.
      operations:
      - method: PUT
        name: validateconfig
        description: Validate connector configuration
        call: connect-plugins.validateconfig
        with:
          plugin: rest.plugin
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: connect-plugins-mcp
    port: 9090
    transport: http
    description: MCP adapter for Debezium Kafka Connect REST API — Plugins. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-installed-connector-plugins
      description: List installed connector plugins
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: connect-plugins.listplugins
      outputParameters:
      - type: object
        mapping: $.
    - name: validate-connector-configuration
      description: Validate connector configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: connect-plugins.validateconfig
      with:
        plugin: tools.plugin
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.