Apache Kafka · Capability

Kafka Connect REST API — Plugins

Kafka Connect REST API — Plugins. 2 operations. Lead operation: Apache kafka List Connector Plugins. Self-contained Naftiko capability covering one Apache Kafka business surface.

Run with Naftiko Apache KafkaPlugins

What You Can Do

GET
Listconnectorplugins — Apache kafka List Connector Plugins
/v1/connector-plugins
PUT
Validateconnectorconfig — Apache kafka Validate Connector Config
/v1/connector-plugins/{plugin}/config/validate

MCP Tools

apache-kafka-list-connector-plugins

Apache kafka List Connector Plugins

read-only idempotent
apache-kafka-validate-connector-config

Apache kafka Validate Connector Config

idempotent

Capability Spec

kafka-connect-plugins.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Kafka Connect REST API — Plugins
  description: 'Kafka Connect REST API — Plugins. 2 operations. Lead operation: Apache kafka List Connector Plugins. Self-contained
    Naftiko capability covering one Apache Kafka business surface.'
  tags:
  - Apache Kafka
  - Plugins
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APACHE_KAFKA_API_KEY: APACHE_KAFKA_API_KEY
capability:
  consumes:
  - type: http
    namespace: kafka-connect-plugins
    baseUri: http://localhost:8083
    description: Kafka Connect REST API — Plugins business capability. Self-contained, no shared references.
    resources:
    - name: connector-plugins
      path: /connector-plugins
      operations:
      - name: listconnectorplugins
        method: GET
        description: Apache kafka List Connector Plugins
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: connectorsOnly
          in: query
          type: boolean
    - name: connector-plugins-plugin-config-validate
      path: /connector-plugins/{plugin}/config/validate
      operations:
      - name: validateconnectorconfig
        method: PUT
        description: Apache kafka Validate Connector Config
        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: kafka-connect-plugins-rest
    port: 8080
    description: REST adapter for 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: listconnectorplugins
        description: Apache kafka List Connector Plugins
        call: kafka-connect-plugins.listconnectorplugins
        with:
          connectorsOnly: rest.connectorsOnly
        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: validateconnectorconfig
        description: Apache kafka Validate Connector Config
        call: kafka-connect-plugins.validateconnectorconfig
        with:
          plugin: rest.plugin
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: kafka-connect-plugins-mcp
    port: 9090
    transport: http
    description: MCP adapter for Kafka Connect REST API — Plugins. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: apache-kafka-list-connector-plugins
      description: Apache kafka List Connector Plugins
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: kafka-connect-plugins.listconnectorplugins
      with:
        connectorsOnly: tools.connectorsOnly
      outputParameters:
      - type: object
        mapping: $.
    - name: apache-kafka-validate-connector-config
      description: Apache kafka Validate Connector Config
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: kafka-connect-plugins.validateconnectorconfig
      with:
        plugin: tools.plugin
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.