Oracle Integration · Capability

Oracle Integration Developer API — Projects

Oracle Integration Developer API — Projects. 4 operations. Lead operation: Oracle Integration List Projects. Self-contained Naftiko capability covering one Oracle Integration business surface.

Run with Naftiko Oracle IntegrationProjects

What You Can Do

GET
Listprojects — Oracle Integration List Projects
/v1/ic/api/integration/v1/projects
POST
Createproject — Oracle Integration Create Project
/v1/ic/api/integration/v1/projects
GET
Getproject — Oracle Integration Get Project
/v1/ic/api/integration/v1/projects/{id}
DELETE
Deleteproject — Oracle Integration Delete Project
/v1/ic/api/integration/v1/projects/{id}

MCP Tools

oracle-integration-list-projects

Oracle Integration List Projects

read-only idempotent
oracle-integration-create-project

Oracle Integration Create Project

oracle-integration-get-project

Oracle Integration Get Project

read-only idempotent
oracle-integration-delete-project

Oracle Integration Delete Project

idempotent

Capability Spec

developer-projects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle Integration Developer API — Projects
  description: 'Oracle Integration Developer API — Projects. 4 operations. Lead operation: Oracle Integration List Projects.
    Self-contained Naftiko capability covering one Oracle Integration business surface.'
  tags:
  - Oracle Integration
  - Projects
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ORACLE_INTEGRATION_API_KEY: ORACLE_INTEGRATION_API_KEY
capability:
  consumes:
  - type: http
    namespace: developer-projects
    baseUri: https://{instance}.integration.ocp.oraclecloud.com
    description: Oracle Integration Developer API — Projects business capability. Self-contained, no shared references.
    resources:
    - name: ic-api-integration-v1-projects
      path: /ic/api/integration/v1/projects
      operations:
      - name: listprojects
        method: GET
        description: Oracle Integration List Projects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createproject
        method: POST
        description: Oracle Integration Create Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ic-api-integration-v1-projects-id
      path: /ic/api/integration/v1/projects/{id}
      operations:
      - name: getproject
        method: GET
        description: Oracle Integration Get Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Project identifier.
          required: true
      - name: deleteproject
        method: DELETE
        description: Oracle Integration Delete Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Project identifier.
          required: true
    authentication:
      type: bearer
      token: '{{env.ORACLE_INTEGRATION_API_KEY}}'
  exposes:
  - type: rest
    namespace: developer-projects-rest
    port: 8080
    description: REST adapter for Oracle Integration Developer API — Projects. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/ic/api/integration/v1/projects
      name: ic-api-integration-v1-projects
      description: REST surface for ic-api-integration-v1-projects.
      operations:
      - method: GET
        name: listprojects
        description: Oracle Integration List Projects
        call: developer-projects.listprojects
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createproject
        description: Oracle Integration Create Project
        call: developer-projects.createproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ic/api/integration/v1/projects/{id}
      name: ic-api-integration-v1-projects-id
      description: REST surface for ic-api-integration-v1-projects-id.
      operations:
      - method: GET
        name: getproject
        description: Oracle Integration Get Project
        call: developer-projects.getproject
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteproject
        description: Oracle Integration Delete Project
        call: developer-projects.deleteproject
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: developer-projects-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle Integration Developer API — Projects. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: oracle-integration-list-projects
      description: Oracle Integration List Projects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: developer-projects.listprojects
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-create-project
      description: Oracle Integration Create Project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: developer-projects.createproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-get-project
      description: Oracle Integration Get Project
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: developer-projects.getproject
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-delete-project
      description: Oracle Integration Delete Project
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: developer-projects.deleteproject
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.