Dataiku · Capability

Dataiku API Node Administration API — Authentication

Dataiku API Node Administration API — Authentication. 4 operations. Lead operation: Dataiku List authentication keys. Self-contained Naftiko capability covering one Dataiku business surface.

Run with Naftiko DataikuAuthentication

What You Can Do

GET
Listauthkeys — Dataiku List authentication keys
/v1/auth/keys
POST
Createauthkey — Dataiku Create an authentication key
/v1/auth/keys
GET
Getauthkey — Dataiku Get authentication key details
/v1/auth/keys/{keyid}
DELETE
Deleteauthkey — Dataiku Delete an authentication key
/v1/auth/keys/{keyid}

MCP Tools

dataiku-list-authentication-keys

Dataiku List authentication keys

read-only idempotent
dataiku-create-authentication-key

Dataiku Create an authentication key

dataiku-get-authentication-key-details

Dataiku Get authentication key details

read-only idempotent
dataiku-delete-authentication-key

Dataiku Delete an authentication key

idempotent

Capability Spec

api-node-admin-authentication.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Dataiku API Node Administration API — Authentication
  description: 'Dataiku API Node Administration API — Authentication. 4 operations. Lead operation: Dataiku List authentication
    keys. Self-contained Naftiko capability covering one Dataiku business surface.'
  tags:
  - Dataiku
  - Authentication
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DATAIKU_API_KEY: DATAIKU_API_KEY
capability:
  consumes:
  - type: http
    namespace: api-node-admin-authentication
    baseUri: https://{apinode-host}:{port}/admin/api
    description: Dataiku API Node Administration API — Authentication business capability. Self-contained, no shared references.
    resources:
    - name: auth-keys
      path: /auth/keys
      operations:
      - name: listauthkeys
        method: GET
        description: Dataiku List authentication keys
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createauthkey
        method: POST
        description: Dataiku Create an authentication key
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: auth-keys-keyId
      path: /auth/keys/{keyId}
      operations:
      - name: getauthkey
        method: GET
        description: Dataiku Get authentication key details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deleteauthkey
        method: DELETE
        description: Dataiku Delete an authentication key
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.DATAIKU_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: api-node-admin-authentication-rest
    port: 8080
    description: REST adapter for Dataiku API Node Administration API — Authentication. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/auth/keys
      name: auth-keys
      description: REST surface for auth-keys.
      operations:
      - method: GET
        name: listauthkeys
        description: Dataiku List authentication keys
        call: api-node-admin-authentication.listauthkeys
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createauthkey
        description: Dataiku Create an authentication key
        call: api-node-admin-authentication.createauthkey
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/auth/keys/{keyid}
      name: auth-keys-keyid
      description: REST surface for auth-keys-keyId.
      operations:
      - method: GET
        name: getauthkey
        description: Dataiku Get authentication key details
        call: api-node-admin-authentication.getauthkey
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteauthkey
        description: Dataiku Delete an authentication key
        call: api-node-admin-authentication.deleteauthkey
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: api-node-admin-authentication-mcp
    port: 9090
    transport: http
    description: MCP adapter for Dataiku API Node Administration API — Authentication. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: dataiku-list-authentication-keys
      description: Dataiku List authentication keys
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: api-node-admin-authentication.listauthkeys
      outputParameters:
      - type: object
        mapping: $.
    - name: dataiku-create-authentication-key
      description: Dataiku Create an authentication key
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: api-node-admin-authentication.createauthkey
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: dataiku-get-authentication-key-details
      description: Dataiku Get authentication key details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: api-node-admin-authentication.getauthkey
      outputParameters:
      - type: object
        mapping: $.
    - name: dataiku-delete-authentication-key
      description: Dataiku Delete an authentication key
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: api-node-admin-authentication.deleteauthkey
      outputParameters:
      - type: object
        mapping: $.