Lever · Capability

Lever Data API — Users

Lever Data API — Users. Manage Lever users (recruiters, hiring managers, interviewers).

Lever Data API — Users is a Naftiko capability published by Lever, one of 11 capabilities the APIs.io network indexes for this provider. It bundles 4 operations.

The capability includes 2 read-only operations and 2 state-changing operations. Lead operation: List Users. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Lever, Users, and Identity.

Run with Naftiko LeverUsersIdentity

MCP Tools

lever-list-users

List Users

read-only idempotent
lever-create-user

Create A User

lever-get-user

Retrieve A User

read-only idempotent
lever-update-user

Update A User

idempotent

Capability Spec

data-users.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Lever Data API — Users
  description: 'Lever Data API — Users. Manage Lever users (recruiters, hiring managers, interviewers).'
  tags:
  - Lever
  - Users
  - Identity
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    LEVER_API_KEY: LEVER_API_KEY
capability:
  consumes:
  - type: http
    namespace: data-users
    baseUri: https://api.lever.co/v1
    description: Lever Data API — Users.
    resources:
    - name: users
      path: /users
      operations:
      - name: listUsers
        method: GET
        description: List Users
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createUser
        method: POST
        description: Create A User
        outputRawFormat: json
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: user
      path: /users/{id}
      operations:
      - name: getUser
        method: GET
        description: Retrieve A User
        outputRawFormat: json
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateUser
        method: PUT
        description: Update A User
        outputRawFormat: json
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          required: true
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.LEVER_API_KEY}}'
      password: ''
  exposes:
  - type: mcp
    namespace: data-users-mcp
    port: 9090
    transport: http
    description: MCP adapter for Lever Users.
    tools:
    - name: lever-list-users
      description: List Users
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: data-users.listUsers
      outputParameters:
      - type: object
        mapping: $.
    - name: lever-create-user
      description: Create A User
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: data-users.createUser
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: lever-get-user
      description: Retrieve A User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: data-users.getUser
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: lever-update-user
      description: Update A User
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: data-users.updateUser
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.