Bindbee · Capability

Bindbee API — Employees

Bindbee API — Employees. 2 operations. Lead operation: Bindbee List Employees. Self-contained Naftiko capability covering one Bindbee business surface.

Run with Naftiko BindbeeEmployees

What You Can Do

GET
Listemployees — Bindbee List Employees
/v1/hris/employees
GET
Getemployee — Bindbee Get Employee
/v1/hris/employees/{id}

MCP Tools

bindbee-list-employees

Bindbee List Employees

read-only idempotent
bindbee-get-employee

Bindbee Get Employee

read-only idempotent

Capability Spec

bindbee-employees.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Bindbee API — Employees
  description: 'Bindbee API — Employees. 2 operations. Lead operation: Bindbee List Employees. Self-contained Naftiko capability
    covering one Bindbee business surface.'
  tags:
  - Bindbee
  - Employees
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BINDBEE_API_KEY: BINDBEE_API_KEY
capability:
  consumes:
  - type: http
    namespace: bindbee-employees
    baseUri: https://api.bindbee.dev/v1
    description: Bindbee API — Employees business capability. Self-contained, no shared references.
    resources:
    - name: hris-employees
      path: /hris/employees
      operations:
      - name: listemployees
        method: GET
        description: Bindbee List Employees
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: x-connector-token
          in: header
          type: string
          description: The connector token for the specific HR system integration.
          required: true
        - name: page_size
          in: query
          type: integer
          description: Number of results per page.
        - name: cursor
          in: query
          type: string
          description: Pagination cursor from previous response.
    - name: hris-employees-id
      path: /hris/employees/{id}
      operations:
      - name: getemployee
        method: GET
        description: Bindbee Get Employee
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: x-connector-token
          in: header
          type: string
          required: true
        - name: id
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.BINDBEE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: bindbee-employees-rest
    port: 8080
    description: REST adapter for Bindbee API — Employees. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/hris/employees
      name: hris-employees
      description: REST surface for hris-employees.
      operations:
      - method: GET
        name: listemployees
        description: Bindbee List Employees
        call: bindbee-employees.listemployees
        with:
          x-connector-token: rest.x-connector-token
          page_size: rest.page_size
          cursor: rest.cursor
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/hris/employees/{id}
      name: hris-employees-id
      description: REST surface for hris-employees-id.
      operations:
      - method: GET
        name: getemployee
        description: Bindbee Get Employee
        call: bindbee-employees.getemployee
        with:
          x-connector-token: rest.x-connector-token
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: bindbee-employees-mcp
    port: 9090
    transport: http
    description: MCP adapter for Bindbee API — Employees. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: bindbee-list-employees
      description: Bindbee List Employees
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bindbee-employees.listemployees
      with:
        x-connector-token: tools.x-connector-token
        page_size: tools.page_size
        cursor: tools.cursor
      outputParameters:
      - type: object
        mapping: $.
    - name: bindbee-get-employee
      description: Bindbee Get Employee
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bindbee-employees.getemployee
      with:
        x-connector-token: tools.x-connector-token
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.