Couchbase · Capability

Couchbase Eventing Service REST API — Configuration

Couchbase Eventing Service REST API — Configuration. 2 operations. Lead operation: Get Eventing Service configuration. Self-contained Naftiko capability covering one Couchbase business surface.

Run with Naftiko CouchbaseConfiguration

What You Can Do

GET
Geteventingconfig — Get Eventing Service configuration
/v1/api/v1/config
POST
Updateeventingconfig — Update Eventing Service configuration
/v1/api/v1/config

MCP Tools

get-eventing-service-configuration

Get Eventing Service configuration

read-only idempotent
update-eventing-service-configuration

Update Eventing Service configuration

Capability Spec

eventing-service-rest-configuration.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Couchbase Eventing Service REST API — Configuration
  description: 'Couchbase Eventing Service REST API — Configuration. 2 operations. Lead operation: Get Eventing Service configuration.
    Self-contained Naftiko capability covering one Couchbase business surface.'
  tags:
  - Couchbase
  - Configuration
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    COUCHBASE_API_KEY: COUCHBASE_API_KEY
capability:
  consumes:
  - type: http
    namespace: eventing-service-rest-configuration
    baseUri: https://localhost:8096
    description: Couchbase Eventing Service REST API — Configuration business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-config
      path: /api/v1/config
      operations:
      - name: geteventingconfig
        method: GET
        description: Get Eventing Service configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateeventingconfig
        method: POST
        description: Update Eventing Service configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.COUCHBASE_USER}}'
      password: '{{env.COUCHBASE_PASS}}'
  exposes:
  - type: rest
    namespace: eventing-service-rest-configuration-rest
    port: 8080
    description: REST adapter for Couchbase Eventing Service REST API — Configuration. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/api/v1/config
      name: api-v1-config
      description: REST surface for api-v1-config.
      operations:
      - method: GET
        name: geteventingconfig
        description: Get Eventing Service configuration
        call: eventing-service-rest-configuration.geteventingconfig
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: updateeventingconfig
        description: Update Eventing Service configuration
        call: eventing-service-rest-configuration.updateeventingconfig
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: eventing-service-rest-configuration-mcp
    port: 9090
    transport: http
    description: MCP adapter for Couchbase Eventing Service REST API — Configuration. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: get-eventing-service-configuration
      description: Get Eventing Service configuration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: eventing-service-rest-configuration.geteventingconfig
      outputParameters:
      - type: object
        mapping: $.
    - name: update-eventing-service-configuration
      description: Update Eventing Service configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: eventing-service-rest-configuration.updateeventingconfig
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.