PeopleSoft · Capability

PeopleSoft Update Manager API — Updates

PeopleSoft Update Manager API — Updates. 2 operations. Lead operation: PeopleSoft List Available Updates. Self-contained Naftiko capability covering one Peoplesoft business surface.

Run with Naftiko PeoplesoftUpdates

What You Can Do

GET
Listupdates — PeopleSoft List Available Updates
/v1/updates
POST
Applyupdate — PeopleSoft Apply Update
/v1/updates/{updateid}/apply

MCP Tools

peoplesoft-list-available-updates

PeopleSoft List Available Updates

read-only idempotent
peoplesoft-apply-update

PeopleSoft Apply Update

Capability Spec

update-manager-updates.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: PeopleSoft Update Manager API — Updates
  description: 'PeopleSoft Update Manager API — Updates. 2 operations. Lead operation: PeopleSoft List Available Updates.
    Self-contained Naftiko capability covering one Peoplesoft business surface.'
  tags:
  - Peoplesoft
  - Updates
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PEOPLESOFT_API_KEY: PEOPLESOFT_API_KEY
capability:
  consumes:
  - type: http
    namespace: update-manager-updates
    baseUri: https://{hostname}:{port}/psft/api/pum/v1
    description: PeopleSoft Update Manager API — Updates business capability. Self-contained, no shared references.
    resources:
    - name: updates
      path: /updates
      operations:
      - name: listupdates
        method: GET
        description: PeopleSoft List Available Updates
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: updates-updateId-apply
      path: /updates/{updateId}/apply
      operations:
      - name: applyupdate
        method: POST
        description: PeopleSoft Apply Update
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: updateId
          in: path
          type: string
          description: The update identifier
          required: true
    authentication:
      type: basic
      username: '{{env.PEOPLESOFT_USER}}'
      password: '{{env.PEOPLESOFT_PASS}}'
  exposes:
  - type: rest
    namespace: update-manager-updates-rest
    port: 8080
    description: REST adapter for PeopleSoft Update Manager API — Updates. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/updates
      name: updates
      description: REST surface for updates.
      operations:
      - method: GET
        name: listupdates
        description: PeopleSoft List Available Updates
        call: update-manager-updates.listupdates
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/updates/{updateid}/apply
      name: updates-updateid-apply
      description: REST surface for updates-updateId-apply.
      operations:
      - method: POST
        name: applyupdate
        description: PeopleSoft Apply Update
        call: update-manager-updates.applyupdate
        with:
          updateId: rest.updateId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: update-manager-updates-mcp
    port: 9090
    transport: http
    description: MCP adapter for PeopleSoft Update Manager API — Updates. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: peoplesoft-list-available-updates
      description: PeopleSoft List Available Updates
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: update-manager-updates.listupdates
      outputParameters:
      - type: object
        mapping: $.
    - name: peoplesoft-apply-update
      description: PeopleSoft Apply Update
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: update-manager-updates.applyupdate
      with:
        updateId: tools.updateId
      outputParameters:
      - type: object
        mapping: $.