Oracle WebLogic Server APIs Oracle WebLogic Server Deployment API — Application Deployments

Oracle WebLogic Server APIs Oracle WebLogic Server Deployment API — Application Deployments. 5 operations. Lead operation: Oracle WebLogic Server APIs List all application deployments. Self-contained Naftiko capability covering one Weblogic business surface.

Run with Naftiko WeblogicApplication Deployments

What You Can Do

GET
Listappdeployments — Oracle WebLogic Server APIs List all application deployments
/v1/edit/appdeployments
POST
Createappdeployment — Oracle WebLogic Server APIs Create an application deployment
/v1/edit/appdeployments
GET
Getappdeployment — Oracle WebLogic Server APIs Get an application deployment
/v1/edit/appdeployments/{appname}
POST
Updateappdeployment — Oracle WebLogic Server APIs Update an application deployment
/v1/edit/appdeployments/{appname}
DELETE
Deleteappdeployment — Oracle WebLogic Server APIs Remove an application deployment
/v1/edit/appdeployments/{appname}

MCP Tools

oracle-weblogic-server-apis-list

Oracle WebLogic Server APIs List all application deployments

read-only idempotent
oracle-weblogic-server-apis-create

Oracle WebLogic Server APIs Create an application deployment

oracle-weblogic-server-apis-get

Oracle WebLogic Server APIs Get an application deployment

read-only idempotent
oracle-weblogic-server-apis-update

Oracle WebLogic Server APIs Update an application deployment

oracle-weblogic-server-apis-remove

Oracle WebLogic Server APIs Remove an application deployment

idempotent

Capability Spec

deployment-application-deployments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle WebLogic Server APIs Oracle WebLogic Server Deployment API — Application Deployments
  description: 'Oracle WebLogic Server APIs Oracle WebLogic Server Deployment API — Application Deployments. 5 operations.
    Lead operation: Oracle WebLogic Server APIs List all application deployments. Self-contained Naftiko capability covering
    one Weblogic business surface.'
  tags:
  - Weblogic
  - Application Deployments
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WEBLOGIC_API_KEY: WEBLOGIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: deployment-application-deployments
    baseUri: https://{host}:{port}/management/weblogic/latest
    description: Oracle WebLogic Server APIs Oracle WebLogic Server Deployment API — Application Deployments business capability.
      Self-contained, no shared references.
    resources:
    - name: edit-appDeployments
      path: /edit/appDeployments
      operations:
      - name: listappdeployments
        method: GET
        description: Oracle WebLogic Server APIs List all application deployments
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createappdeployment
        method: POST
        description: Oracle WebLogic Server APIs Create an application deployment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: edit-appDeployments-appName
      path: /edit/appDeployments/{appName}
      operations:
      - name: getappdeployment
        method: GET
        description: Oracle WebLogic Server APIs Get an application deployment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateappdeployment
        method: POST
        description: Oracle WebLogic Server APIs Update an application deployment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteappdeployment
        method: DELETE
        description: Oracle WebLogic Server APIs Remove an application deployment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.WEBLOGIC_USER}}'
      password: '{{env.WEBLOGIC_PASS}}'
  exposes:
  - type: rest
    namespace: deployment-application-deployments-rest
    port: 8080
    description: REST adapter for Oracle WebLogic Server APIs Oracle WebLogic Server Deployment API — Application Deployments.
      One Spectral-compliant resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/edit/appdeployments
      name: edit-appdeployments
      description: REST surface for edit-appDeployments.
      operations:
      - method: GET
        name: listappdeployments
        description: Oracle WebLogic Server APIs List all application deployments
        call: deployment-application-deployments.listappdeployments
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createappdeployment
        description: Oracle WebLogic Server APIs Create an application deployment
        call: deployment-application-deployments.createappdeployment
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/edit/appdeployments/{appname}
      name: edit-appdeployments-appname
      description: REST surface for edit-appDeployments-appName.
      operations:
      - method: GET
        name: getappdeployment
        description: Oracle WebLogic Server APIs Get an application deployment
        call: deployment-application-deployments.getappdeployment
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: updateappdeployment
        description: Oracle WebLogic Server APIs Update an application deployment
        call: deployment-application-deployments.updateappdeployment
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteappdeployment
        description: Oracle WebLogic Server APIs Remove an application deployment
        call: deployment-application-deployments.deleteappdeployment
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: deployment-application-deployments-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle WebLogic Server APIs Oracle WebLogic Server Deployment API — Application Deployments.
      One tool per consumed operation, routed inline through this capability's consumes block.
    tools:
    - name: oracle-weblogic-server-apis-list
      description: Oracle WebLogic Server APIs List all application deployments
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: deployment-application-deployments.listappdeployments
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-weblogic-server-apis-create
      description: Oracle WebLogic Server APIs Create an application deployment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: deployment-application-deployments.createappdeployment
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-weblogic-server-apis-get
      description: Oracle WebLogic Server APIs Get an application deployment
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: deployment-application-deployments.getappdeployment
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-weblogic-server-apis-update
      description: Oracle WebLogic Server APIs Update an application deployment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: deployment-application-deployments.updateappdeployment
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-weblogic-server-apis-remove
      description: Oracle WebLogic Server APIs Remove an application deployment
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: deployment-application-deployments.deleteappdeployment
      outputParameters:
      - type: object
        mapping: $.