Greenhouse · Capability

Greenhouse Job Board API — Sections

Greenhouse Job Board API — Sections. 2 operations. Lead operation: List prospect sections. Self-contained Naftiko capability covering one Greenhouse business surface.

Run with Naftiko GreenhouseSections

What You Can Do

GET
Get — List prospect sections
/v1/sections
GET
Get — Retrieve prospect section
/v1/sections/{section-id}

MCP Tools

list-prospect-sections

List prospect sections

read-only idempotent
retrieve-prospect-section

Retrieve prospect section

read-only idempotent

Capability Spec

job-board-sections.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Greenhouse Job Board API — Sections
  description: 'Greenhouse Job Board API — Sections. 2 operations. Lead operation: List prospect sections. Self-contained
    Naftiko capability covering one Greenhouse business surface.'
  tags:
  - Greenhouse
  - Sections
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GREENHOUSE_API_KEY: GREENHOUSE_API_KEY
capability:
  consumes:
  - type: http
    namespace: job-board-sections
    baseUri: https://boards-api.greenhouse.io/v1/boards/{board_token}
    description: Greenhouse Job Board API — Sections business capability. Self-contained, no shared references.
    resources:
    - name: sections
      path: /sections
      operations:
      - name: get
        method: GET
        description: List prospect sections
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: sections-section_id
      path: /sections/{section_id}
      operations:
      - name: get
        method: GET
        description: Retrieve prospect section
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.GREENHOUSE_USER}}'
      password: '{{env.GREENHOUSE_PASS}}'
  exposes:
  - type: rest
    namespace: job-board-sections-rest
    port: 8080
    description: REST adapter for Greenhouse Job Board API — Sections. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/sections
      name: sections
      description: REST surface for sections.
      operations:
      - method: GET
        name: get
        description: List prospect sections
        call: job-board-sections.get
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/sections/{section-id}
      name: sections-section-id
      description: REST surface for sections-section_id.
      operations:
      - method: GET
        name: get
        description: Retrieve prospect section
        call: job-board-sections.get
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: job-board-sections-mcp
    port: 9090
    transport: http
    description: MCP adapter for Greenhouse Job Board API — Sections. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-prospect-sections
      description: List prospect sections
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: job-board-sections.get
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-prospect-section
      description: Retrieve prospect section
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: job-board-sections.get
      outputParameters:
      - type: object
        mapping: $.