PeopleSoft · Capability

PeopleSoft Chatbot Integration Framework API — Chatbot

PeopleSoft Chatbot Integration Framework API — Chatbot. 2 operations. Lead operation: PeopleSoft Fulfill Intent. Self-contained Naftiko capability covering one Peoplesoft business surface.

Run with Naftiko PeoplesoftChatbot

What You Can Do

POST
Fulfillintent — PeopleSoft Fulfill Intent
/v1/fulfill
GET
Listintents — PeopleSoft List Intents
/v1/intents

MCP Tools

peoplesoft-fulfill-intent

PeopleSoft Fulfill Intent

peoplesoft-list-intents

PeopleSoft List Intents

read-only idempotent

Capability Spec

chatbot-integration-chatbot.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: PeopleSoft Chatbot Integration Framework API — Chatbot
  description: 'PeopleSoft Chatbot Integration Framework API — Chatbot. 2 operations. Lead operation: PeopleSoft Fulfill Intent.
    Self-contained Naftiko capability covering one Peoplesoft business surface.'
  tags:
  - Peoplesoft
  - Chatbot
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PEOPLESOFT_API_KEY: PEOPLESOFT_API_KEY
capability:
  consumes:
  - type: http
    namespace: chatbot-integration-chatbot
    baseUri: https://{hostname}:{port}/psft/api/chatbot/v1
    description: PeopleSoft Chatbot Integration Framework API — Chatbot business capability. Self-contained, no shared references.
    resources:
    - name: fulfill
      path: /fulfill
      operations:
      - name: fulfillintent
        method: POST
        description: PeopleSoft Fulfill Intent
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: intents
      path: /intents
      operations:
      - name: listintents
        method: GET
        description: PeopleSoft List Intents
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.PEOPLESOFT_USER}}'
      password: '{{env.PEOPLESOFT_PASS}}'
  exposes:
  - type: rest
    namespace: chatbot-integration-chatbot-rest
    port: 8080
    description: REST adapter for PeopleSoft Chatbot Integration Framework API — Chatbot. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/fulfill
      name: fulfill
      description: REST surface for fulfill.
      operations:
      - method: POST
        name: fulfillintent
        description: PeopleSoft Fulfill Intent
        call: chatbot-integration-chatbot.fulfillintent
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/intents
      name: intents
      description: REST surface for intents.
      operations:
      - method: GET
        name: listintents
        description: PeopleSoft List Intents
        call: chatbot-integration-chatbot.listintents
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: chatbot-integration-chatbot-mcp
    port: 9090
    transport: http
    description: MCP adapter for PeopleSoft Chatbot Integration Framework API — Chatbot. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: peoplesoft-fulfill-intent
      description: PeopleSoft Fulfill Intent
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: chatbot-integration-chatbot.fulfillintent
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: peoplesoft-list-intents
      description: PeopleSoft List Intents
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: chatbot-integration-chatbot.listintents
      outputParameters:
      - type: object
        mapping: $.