Oracle Cloud Database API — DB Systems

Oracle Cloud Database API — DB Systems. 2 operations. Lead operation: Oracle Cloud List DB Systems. Self-contained Naftiko capability covering one Oracle Cloud business surface.

Run with Naftiko Oracle CloudDB Systems

What You Can Do

GET
Listdbsystems — Oracle Cloud List DB Systems
/v1/dbsystems
GET
Getdbsystem — Oracle Cloud Get DB System
/v1/dbsystems/{dbsystemid}

MCP Tools

oracle-cloud-list-db-systems

Oracle Cloud List DB Systems

read-only idempotent
oracle-cloud-get-db-system

Oracle Cloud Get DB System

read-only idempotent

Capability Spec

database-db-systems.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle Cloud Database API — DB Systems
  description: 'Oracle Cloud Database API — DB Systems. 2 operations. Lead operation: Oracle Cloud List DB Systems. Self-contained
    Naftiko capability covering one Oracle Cloud business surface.'
  tags:
  - Oracle Cloud
  - DB Systems
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ORACLE_CLOUD_API_KEY: ORACLE_CLOUD_API_KEY
capability:
  consumes:
  - type: http
    namespace: database-db-systems
    baseUri: https://database.{region}.oraclecloud.com/20160918
    description: Oracle Cloud Database API — DB Systems business capability. Self-contained, no shared references.
    resources:
    - name: dbSystems
      path: /dbSystems
      operations:
      - name: listdbsystems
        method: GET
        description: Oracle Cloud List DB Systems
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: compartmentId
          in: query
          type: string
          description: The OCID of the compartment.
          required: true
        - name: limit
          in: query
          type: integer
          description: Maximum number of items to return.
    - name: dbSystems-dbSystemId
      path: /dbSystems/{dbSystemId}
      operations:
      - name: getdbsystem
        method: GET
        description: Oracle Cloud Get DB System
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: dbSystemId
          in: path
          type: string
          description: The OCID of the DB system.
          required: true
    authentication:
      type: bearer
      token: '{{env.ORACLE_CLOUD_API_KEY}}'
  exposes:
  - type: rest
    namespace: database-db-systems-rest
    port: 8080
    description: REST adapter for Oracle Cloud Database API — DB Systems. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/dbsystems
      name: dbsystems
      description: REST surface for dbSystems.
      operations:
      - method: GET
        name: listdbsystems
        description: Oracle Cloud List DB Systems
        call: database-db-systems.listdbsystems
        with:
          compartmentId: rest.compartmentId
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/dbsystems/{dbsystemid}
      name: dbsystems-dbsystemid
      description: REST surface for dbSystems-dbSystemId.
      operations:
      - method: GET
        name: getdbsystem
        description: Oracle Cloud Get DB System
        call: database-db-systems.getdbsystem
        with:
          dbSystemId: rest.dbSystemId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: database-db-systems-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle Cloud Database API — DB Systems. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: oracle-cloud-list-db-systems
      description: Oracle Cloud List DB Systems
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: database-db-systems.listdbsystems
      with:
        compartmentId: tools.compartmentId
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-cloud-get-db-system
      description: Oracle Cloud Get DB System
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: database-db-systems.getdbsystem
      with:
        dbSystemId: tools.dbSystemId
      outputParameters:
      - type: object
        mapping: $.