Greenhouse · Capability

Greenhouse Job Board API — Education

Greenhouse Job Board API — Education. 3 operations. Lead operation: List degrees. Self-contained Naftiko capability covering one Greenhouse business surface.

Run with Naftiko GreenhouseEducation

What You Can Do

GET
Get — List degrees
/v1/education/degrees
GET
Get — List disciplines
/v1/education/disciplines
GET
Get — List schools
/v1/education/schools

MCP Tools

list-degrees

List degrees

read-only idempotent
list-disciplines

List disciplines

read-only idempotent
list-schools

List schools

read-only idempotent

Capability Spec

job-board-education.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Greenhouse Job Board API — Education
  description: 'Greenhouse Job Board API — Education. 3 operations. Lead operation: List degrees. Self-contained Naftiko capability
    covering one Greenhouse business surface.'
  tags:
  - Greenhouse
  - Education
  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-education
    baseUri: https://boards-api.greenhouse.io/v1/boards/{board_token}
    description: Greenhouse Job Board API — Education business capability. Self-contained, no shared references.
    resources:
    - name: education-degrees
      path: /education/degrees
      operations:
      - name: get
        method: GET
        description: List degrees
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: education-disciplines
      path: /education/disciplines
      operations:
      - name: get
        method: GET
        description: List disciplines
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: education-schools
      path: /education/schools
      operations:
      - name: get
        method: GET
        description: List schools
        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-education-rest
    port: 8080
    description: REST adapter for Greenhouse Job Board API — Education. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/education/degrees
      name: education-degrees
      description: REST surface for education-degrees.
      operations:
      - method: GET
        name: get
        description: List degrees
        call: job-board-education.get
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/education/disciplines
      name: education-disciplines
      description: REST surface for education-disciplines.
      operations:
      - method: GET
        name: get
        description: List disciplines
        call: job-board-education.get
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/education/schools
      name: education-schools
      description: REST surface for education-schools.
      operations:
      - method: GET
        name: get
        description: List schools
        call: job-board-education.get
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: job-board-education-mcp
    port: 9090
    transport: http
    description: MCP adapter for Greenhouse Job Board API — Education. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-degrees
      description: List degrees
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: job-board-education.get
      outputParameters:
      - type: object
        mapping: $.
    - name: list-disciplines
      description: List disciplines
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: job-board-education.get
      outputParameters:
      - type: object
        mapping: $.
    - name: list-schools
      description: List schools
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: job-board-education.get
      outputParameters:
      - type: object
        mapping: $.