Dataiku · Capability

Dataiku DSS Public API — Users

Dataiku DSS Public API — Users. 5 operations. Lead operation: Dataiku List users. Self-contained Naftiko capability covering one Dataiku business surface.

Run with Naftiko DataikuUsers

What You Can Do

GET
Listusers — Dataiku List users
/v1/admin/users
POST
Createuser — Dataiku Create a user
/v1/admin/users
GET
Getuser — Dataiku Get user details
/v1/admin/users/{login}
PUT
Updateuser — Dataiku Update a user
/v1/admin/users/{login}
DELETE
Deleteuser — Dataiku Delete a user
/v1/admin/users/{login}

MCP Tools

dataiku-list-users

Dataiku List users

read-only idempotent
dataiku-create-user

Dataiku Create a user

dataiku-get-user-details

Dataiku Get user details

read-only idempotent
dataiku-update-user

Dataiku Update a user

idempotent
dataiku-delete-user

Dataiku Delete a user

idempotent

Capability Spec

public-users.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Dataiku DSS Public API — Users
  description: 'Dataiku DSS Public API — Users. 5 operations. Lead operation: Dataiku List users. Self-contained Naftiko capability
    covering one Dataiku business surface.'
  tags:
  - Dataiku
  - Users
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DATAIKU_API_KEY: DATAIKU_API_KEY
capability:
  consumes:
  - type: http
    namespace: public-users
    baseUri: https://{dss-host}/public/api
    description: Dataiku DSS Public API — Users business capability. Self-contained, no shared references.
    resources:
    - name: admin-users
      path: /admin/users
      operations:
      - name: listusers
        method: GET
        description: Dataiku List users
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createuser
        method: POST
        description: Dataiku Create a user
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: admin-users-login
      path: /admin/users/{login}
      operations:
      - name: getuser
        method: GET
        description: Dataiku Get user details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateuser
        method: PUT
        description: Dataiku Update a user
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteuser
        method: DELETE
        description: Dataiku Delete a user
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.DATAIKU_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: public-users-rest
    port: 8080
    description: REST adapter for Dataiku DSS Public API — Users. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/admin/users
      name: admin-users
      description: REST surface for admin-users.
      operations:
      - method: GET
        name: listusers
        description: Dataiku List users
        call: public-users.listusers
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createuser
        description: Dataiku Create a user
        call: public-users.createuser
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/admin/users/{login}
      name: admin-users-login
      description: REST surface for admin-users-login.
      operations:
      - method: GET
        name: getuser
        description: Dataiku Get user details
        call: public-users.getuser
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateuser
        description: Dataiku Update a user
        call: public-users.updateuser
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteuser
        description: Dataiku Delete a user
        call: public-users.deleteuser
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: public-users-mcp
    port: 9090
    transport: http
    description: MCP adapter for Dataiku DSS Public API — Users. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: dataiku-list-users
      description: Dataiku List users
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: public-users.listusers
      outputParameters:
      - type: object
        mapping: $.
    - name: dataiku-create-user
      description: Dataiku Create a user
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: public-users.createuser
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: dataiku-get-user-details
      description: Dataiku Get user details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: public-users.getuser
      outputParameters:
      - type: object
        mapping: $.
    - name: dataiku-update-user
      description: Dataiku Update a user
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: public-users.updateuser
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: dataiku-delete-user
      description: Dataiku Delete a user
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: public-users.deleteuser
      outputParameters:
      - type: object
        mapping: $.