Couchbase · Capability

Couchbase Capella App Services Admin API — Replication

Couchbase Capella App Services Admin API — Replication. 5 operations. Lead operation: List replications. Self-contained Naftiko capability covering one Couchbase business surface.

Run with Naftiko CouchbaseReplication

What You Can Do

GET
Listreplications — List replications
/v1/{db}/replication
POST
Createreplication — Create a replication
/v1/{db}/replication
GET
Getreplication — Get replication details
/v1/{db}/replication/{replicationid}
PUT
Updatereplication — Update a replication
/v1/{db}/replication/{replicationid}
DELETE
Deletereplication — Delete a replication
/v1/{db}/replication/{replicationid}

MCP Tools

list-replications

List replications

read-only idempotent
create-replication

Create a replication

get-replication-details

Get replication details

read-only idempotent
update-replication

Update a replication

idempotent
delete-replication

Delete a replication

idempotent

Capability Spec

capella-app-services-admin-replication.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Couchbase Capella App Services Admin API — Replication
  description: 'Couchbase Capella App Services Admin API — Replication. 5 operations. Lead operation: List replications. Self-contained
    Naftiko capability covering one Couchbase business surface.'
  tags:
  - Couchbase
  - Replication
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    COUCHBASE_API_KEY: COUCHBASE_API_KEY
capability:
  consumes:
  - type: http
    namespace: capella-app-services-admin-replication
    baseUri: https://{appEndpoint}:4985
    description: Couchbase Capella App Services Admin API — Replication business capability. Self-contained, no shared references.
    resources:
    - name: db-_replication
      path: /{db}/_replication/
      operations:
      - name: listreplications
        method: GET
        description: List replications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createreplication
        method: POST
        description: Create a replication
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: db-_replication-replicationId
      path: /{db}/_replication/{replicationId}
      operations:
      - name: getreplication
        method: GET
        description: Get replication details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatereplication
        method: PUT
        description: Update a replication
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletereplication
        method: DELETE
        description: Delete a replication
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.COUCHBASE_USER}}'
      password: '{{env.COUCHBASE_PASS}}'
  exposes:
  - type: rest
    namespace: capella-app-services-admin-replication-rest
    port: 8080
    description: REST adapter for Couchbase Capella App Services Admin API — Replication. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/{db}/replication
      name: db-replication
      description: REST surface for db-_replication.
      operations:
      - method: GET
        name: listreplications
        description: List replications
        call: capella-app-services-admin-replication.listreplications
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createreplication
        description: Create a replication
        call: capella-app-services-admin-replication.createreplication
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/{db}/replication/{replicationid}
      name: db-replication-replicationid
      description: REST surface for db-_replication-replicationId.
      operations:
      - method: GET
        name: getreplication
        description: Get replication details
        call: capella-app-services-admin-replication.getreplication
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatereplication
        description: Update a replication
        call: capella-app-services-admin-replication.updatereplication
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletereplication
        description: Delete a replication
        call: capella-app-services-admin-replication.deletereplication
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: capella-app-services-admin-replication-mcp
    port: 9090
    transport: http
    description: MCP adapter for Couchbase Capella App Services Admin API — Replication. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: list-replications
      description: List replications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: capella-app-services-admin-replication.listreplications
      outputParameters:
      - type: object
        mapping: $.
    - name: create-replication
      description: Create a replication
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: capella-app-services-admin-replication.createreplication
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-replication-details
      description: Get replication details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: capella-app-services-admin-replication.getreplication
      outputParameters:
      - type: object
        mapping: $.
    - name: update-replication
      description: Update a replication
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: capella-app-services-admin-replication.updatereplication
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-replication
      description: Delete a replication
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: capella-app-services-admin-replication.deletereplication
      outputParameters:
      - type: object
        mapping: $.