Oracle Database · Capability

Oracle Database Oracle Cloud Infrastructure Database API — Backups

Oracle Database Oracle Cloud Infrastructure Database API — Backups. 4 operations. Lead operation: Oracle Database List database backups. Self-contained Naftiko capability covering one Oracle Database business surface.

Run with Naftiko Oracle DatabaseBackups

What You Can Do

GET
Listbackups — Oracle Database List database backups
/v1/backups
POST
Createbackup — Oracle Database Create a database backup
/v1/backups
GET
Getbackup — Oracle Database Get a database backup
/v1/backups/{backupid}
DELETE
Deletebackup — Oracle Database Delete a database backup
/v1/backups/{backupid}

MCP Tools

oracle-database-list-database-backups

Oracle Database List database backups

read-only idempotent
oracle-database-create-database-backup

Oracle Database Create a database backup

oracle-database-get-database-backup

Oracle Database Get a database backup

read-only idempotent
oracle-database-delete-database-backup

Oracle Database Delete a database backup

idempotent

Capability Spec

oci-backups.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle Database Oracle Cloud Infrastructure Database API — Backups
  description: 'Oracle Database Oracle Cloud Infrastructure Database API — Backups. 4 operations. Lead operation: Oracle Database
    List database backups. Self-contained Naftiko capability covering one Oracle Database business surface.'
  tags:
  - Oracle Database
  - Backups
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ORACLE_DATABASE_API_KEY: ORACLE_DATABASE_API_KEY
capability:
  consumes:
  - type: http
    namespace: oci-backups
    baseUri: https://database.{region}.oraclecloud.com/20160918
    description: Oracle Database Oracle Cloud Infrastructure Database API — Backups business capability. Self-contained, no
      shared references.
    resources:
    - name: backups
      path: /backups
      operations:
      - name: listbackups
        method: GET
        description: Oracle Database List database backups
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: databaseId
          in: query
          type: string
      - name: createbackup
        method: POST
        description: Oracle Database Create a database backup
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: backups-backupId
      path: /backups/{backupId}
      operations:
      - name: getbackup
        method: GET
        description: Oracle Database Get a database backup
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: backupId
          in: path
          type: string
          required: true
      - name: deletebackup
        method: DELETE
        description: Oracle Database Delete a database backup
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: backupId
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.ORACLE_DATABASE_API_KEY}}'
  exposes:
  - type: rest
    namespace: oci-backups-rest
    port: 8080
    description: REST adapter for Oracle Database Oracle Cloud Infrastructure Database API — Backups. One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/backups
      name: backups
      description: REST surface for backups.
      operations:
      - method: GET
        name: listbackups
        description: Oracle Database List database backups
        call: oci-backups.listbackups
        with:
          databaseId: rest.databaseId
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createbackup
        description: Oracle Database Create a database backup
        call: oci-backups.createbackup
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/backups/{backupid}
      name: backups-backupid
      description: REST surface for backups-backupId.
      operations:
      - method: GET
        name: getbackup
        description: Oracle Database Get a database backup
        call: oci-backups.getbackup
        with:
          backupId: rest.backupId
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletebackup
        description: Oracle Database Delete a database backup
        call: oci-backups.deletebackup
        with:
          backupId: rest.backupId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: oci-backups-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle Database Oracle Cloud Infrastructure Database API — Backups. One tool per consumed
      operation, routed inline through this capability's consumes block.
    tools:
    - name: oracle-database-list-database-backups
      description: Oracle Database List database backups
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: oci-backups.listbackups
      with:
        databaseId: tools.databaseId
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-database-create-database-backup
      description: Oracle Database Create a database backup
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: oci-backups.createbackup
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-database-get-database-backup
      description: Oracle Database Get a database backup
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: oci-backups.getbackup
      with:
        backupId: tools.backupId
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-database-delete-database-backup
      description: Oracle Database Delete a database backup
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: oci-backups.deletebackup
      with:
        backupId: tools.backupId
      outputParameters:
      - type: object
        mapping: $.