PeopleForce · Capability

PeopleForce API — Vacancies

PeopleForce API — Vacancies. 2 operations. Lead operation: List vacancies. Self-contained Naftiko capability covering one Peopleforce business surface.

Run with Naftiko PeopleforceVacancies

What You Can Do

GET
Get — List vacancies
/v1/vacancies
GET
Get — Get a vacancy
/v1/vacancies/{id}

MCP Tools

list-vacancies

List vacancies

read-only idempotent
get-vacancy

Get a vacancy

read-only idempotent

Capability Spec

peopleforce-vacancies.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: PeopleForce API — Vacancies
  description: 'PeopleForce API — Vacancies. 2 operations. Lead operation: List vacancies. Self-contained Naftiko capability
    covering one Peopleforce business surface.'
  tags:
  - Peopleforce
  - Vacancies
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PEOPLEFORCE_API_KEY: PEOPLEFORCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: peopleforce-vacancies
    baseUri: https://app.peopleforce.io/api/public/v2
    description: PeopleForce API — Vacancies business capability. Self-contained, no shared references.
    resources:
    - name: vacancies
      path: /vacancies
      operations:
      - name: get
        method: GET
        description: List vacancies
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: vacancies-id
      path: /vacancies/{id}
      operations:
      - name: get
        method: GET
        description: Get a vacancy
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.PEOPLEFORCE_API_KEY}}'
  exposes:
  - type: rest
    namespace: peopleforce-vacancies-rest
    port: 8080
    description: REST adapter for PeopleForce API — Vacancies. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/vacancies
      name: vacancies
      description: REST surface for vacancies.
      operations:
      - method: GET
        name: get
        description: List vacancies
        call: peopleforce-vacancies.get
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/vacancies/{id}
      name: vacancies-id
      description: REST surface for vacancies-id.
      operations:
      - method: GET
        name: get
        description: Get a vacancy
        call: peopleforce-vacancies.get
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: peopleforce-vacancies-mcp
    port: 9090
    transport: http
    description: MCP adapter for PeopleForce API — Vacancies. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-vacancies
      description: List vacancies
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: peopleforce-vacancies.get
      outputParameters:
      - type: object
        mapping: $.
    - name: get-vacancy
      description: Get a vacancy
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: peopleforce-vacancies.get
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.