Dataiku · Capability

Dataiku API Node Administration API

Dataiku API Node Administration API. 5 operations. Lead operation: Dataiku List deployed services. Self-contained Naftiko capability covering one Dataiku business surface.

Run with Naftiko Dataiku

What You Can Do

GET
Listservices — Dataiku List deployed services
/v1/services
GET
Getservice — Dataiku Get service details
/v1/services/{serviceid}
DELETE
Deleteservice — Dataiku Delete a service
/v1/services/{serviceid}
POST
Disableservice — Dataiku Disable a service
/v1/services/{serviceid}/disable
POST
Enableservice — Dataiku Enable a service
/v1/services/{serviceid}/enable

MCP Tools

dataiku-list-deployed-services

Dataiku List deployed services

read-only idempotent
dataiku-get-service-details

Dataiku Get service details

read-only idempotent
dataiku-delete-service

Dataiku Delete a service

idempotent
dataiku-disable-service

Dataiku Disable a service

dataiku-enable-service

Dataiku Enable a service

Capability Spec

api-node-admin-general.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Dataiku API Node Administration API
  description: 'Dataiku API Node Administration API. 5 operations. Lead operation: Dataiku List deployed services. Self-contained
    Naftiko capability covering one Dataiku business surface.'
  tags:
  - Dataiku
  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-general
    baseUri: https://{apinode-host}:{port}/admin/api
    description: Dataiku API Node Administration API business capability. Self-contained, no shared references.
    resources:
    - name: services
      path: /services
      operations:
      - name: listservices
        method: GET
        description: Dataiku List deployed services
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: services-serviceId
      path: /services/{serviceId}
      operations:
      - name: getservice
        method: GET
        description: Dataiku Get service details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deleteservice
        method: DELETE
        description: Dataiku Delete a service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: services-serviceId-disable
      path: /services/{serviceId}/disable
      operations:
      - name: disableservice
        method: POST
        description: Dataiku Disable a service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: services-serviceId-enable
      path: /services/{serviceId}/enable
      operations:
      - name: enableservice
        method: POST
        description: Dataiku Enable a service
        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-general-rest
    port: 8080
    description: REST adapter for Dataiku API Node Administration API. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/services
      name: services
      description: REST surface for services.
      operations:
      - method: GET
        name: listservices
        description: Dataiku List deployed services
        call: api-node-admin-general.listservices
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/services/{serviceid}
      name: services-serviceid
      description: REST surface for services-serviceId.
      operations:
      - method: GET
        name: getservice
        description: Dataiku Get service details
        call: api-node-admin-general.getservice
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteservice
        description: Dataiku Delete a service
        call: api-node-admin-general.deleteservice
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/services/{serviceid}/disable
      name: services-serviceid-disable
      description: REST surface for services-serviceId-disable.
      operations:
      - method: POST
        name: disableservice
        description: Dataiku Disable a service
        call: api-node-admin-general.disableservice
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/services/{serviceid}/enable
      name: services-serviceid-enable
      description: REST surface for services-serviceId-enable.
      operations:
      - method: POST
        name: enableservice
        description: Dataiku Enable a service
        call: api-node-admin-general.enableservice
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: api-node-admin-general-mcp
    port: 9090
    transport: http
    description: MCP adapter for Dataiku API Node Administration API. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: dataiku-list-deployed-services
      description: Dataiku List deployed services
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: api-node-admin-general.listservices
      outputParameters:
      - type: object
        mapping: $.
    - name: dataiku-get-service-details
      description: Dataiku Get service details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: api-node-admin-general.getservice
      outputParameters:
      - type: object
        mapping: $.
    - name: dataiku-delete-service
      description: Dataiku Delete a service
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: api-node-admin-general.deleteservice
      outputParameters:
      - type: object
        mapping: $.
    - name: dataiku-disable-service
      description: Dataiku Disable a service
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: api-node-admin-general.disableservice
      outputParameters:
      - type: object
        mapping: $.
    - name: dataiku-enable-service
      description: Dataiku Enable a service
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: api-node-admin-general.enableservice
      outputParameters:
      - type: object
        mapping: $.