YugabyteDB · Capability

YugabyteDB Anywhere V2 APIs — Isolated Backup

YugabyteDB Anywhere V2 APIs — Isolated Backup. 2 operations. Lead operation: YugabyteDB Anywhere Create YBA Backup. Self-contained Naftiko capability covering one Yugabytedb business surface.

Run with Naftiko YugabytedbIsolated Backup

What You Can Do

POST
Createybabackup — YugabyteDB Anywhere Create YBA Backup
/v1/customers/{cuuid}/yba-backups
POST
Restoreybabackup — YugabyteDB Anywhere Restore YBA Backup
/v1/customers/{cuuid}/yba-backups/restore

MCP Tools

yugabytedb-anywhere-create-yba-backup

YugabyteDB Anywhere Create YBA Backup

yugabytedb-anywhere-restore-yba-backup

YugabyteDB Anywhere Restore YBA Backup

Capability Spec

anywhere-v2-isolated-backup.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: YugabyteDB Anywhere V2 APIs — Isolated Backup
  description: 'YugabyteDB Anywhere V2 APIs — Isolated Backup. 2 operations. Lead operation: YugabyteDB Anywhere Create YBA
    Backup. Self-contained Naftiko capability covering one Yugabytedb business surface.'
  tags:
  - Yugabytedb
  - Isolated Backup
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    YUGABYTEDB_API_KEY: YUGABYTEDB_API_KEY
capability:
  consumes:
  - type: http
    namespace: anywhere-v2-isolated-backup
    baseUri: ''
    description: YugabyteDB Anywhere V2 APIs — Isolated Backup business capability. Self-contained, no shared references.
    resources:
    - name: customers-cUUID-yba-backups
      path: /customers/{cUUID}/yba-backups
      operations:
      - name: createybabackup
        method: POST
        description: YugabyteDB Anywhere Create YBA Backup
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: cUUID
          in: path
          type: string
          description: Customer UUID
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: customers-cUUID-yba-backups-restore
      path: /customers/{cUUID}/yba-backups/restore
      operations:
      - name: restoreybabackup
        method: POST
        description: YugabyteDB Anywhere Restore YBA Backup
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: cUUID
          in: path
          type: string
          description: Customer UUID
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: apikey
      key: X-AUTH-YW-API-TOKEN
      value: '{{env.YUGABYTEDB_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: anywhere-v2-isolated-backup-rest
    port: 8080
    description: REST adapter for YugabyteDB Anywhere V2 APIs — Isolated Backup. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/customers/{cuuid}/yba-backups
      name: customers-cuuid-yba-backups
      description: REST surface for customers-cUUID-yba-backups.
      operations:
      - method: POST
        name: createybabackup
        description: YugabyteDB Anywhere Create YBA Backup
        call: anywhere-v2-isolated-backup.createybabackup
        with:
          cUUID: rest.cUUID
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/customers/{cuuid}/yba-backups/restore
      name: customers-cuuid-yba-backups-restore
      description: REST surface for customers-cUUID-yba-backups-restore.
      operations:
      - method: POST
        name: restoreybabackup
        description: YugabyteDB Anywhere Restore YBA Backup
        call: anywhere-v2-isolated-backup.restoreybabackup
        with:
          cUUID: rest.cUUID
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: anywhere-v2-isolated-backup-mcp
    port: 9090
    transport: http
    description: MCP adapter for YugabyteDB Anywhere V2 APIs — Isolated Backup. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: yugabytedb-anywhere-create-yba-backup
      description: YugabyteDB Anywhere Create YBA Backup
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: anywhere-v2-isolated-backup.createybabackup
      with:
        cUUID: tools.cUUID
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: yugabytedb-anywhere-restore-yba-backup
      description: YugabyteDB Anywhere Restore YBA Backup
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: anywhere-v2-isolated-backup.restoreybabackup
      with:
        cUUID: tools.cUUID
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.