Dataiku · Capability

Dataiku DSS Public API — Recipes

Dataiku DSS Public API — Recipes. 3 operations. Lead operation: Dataiku List recipes. Self-contained Naftiko capability covering one Dataiku business surface.

Run with Naftiko DataikuRecipes

What You Can Do

GET
Listrecipes — Dataiku List recipes
/v1/projects/{projectkey}/recipes
GET
Getrecipe — Dataiku Get recipe details
/v1/projects/{projectkey}/recipes/{recipename}
DELETE
Deleterecipe — Dataiku Delete a recipe
/v1/projects/{projectkey}/recipes/{recipename}

MCP Tools

dataiku-list-recipes

Dataiku List recipes

read-only idempotent
dataiku-get-recipe-details

Dataiku Get recipe details

read-only idempotent
dataiku-delete-recipe

Dataiku Delete a recipe

idempotent

Capability Spec

public-recipes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Dataiku DSS Public API — Recipes
  description: 'Dataiku DSS Public API — Recipes. 3 operations. Lead operation: Dataiku List recipes. Self-contained Naftiko
    capability covering one Dataiku business surface.'
  tags:
  - Dataiku
  - Recipes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DATAIKU_API_KEY: DATAIKU_API_KEY
capability:
  consumes:
  - type: http
    namespace: public-recipes
    baseUri: https://{dss-host}/public/api
    description: Dataiku DSS Public API — Recipes business capability. Self-contained, no shared references.
    resources:
    - name: projects-projectKey-recipes
      path: /projects/{projectKey}/recipes
      operations:
      - name: listrecipes
        method: GET
        description: Dataiku List recipes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: projects-projectKey-recipes-recipeName
      path: /projects/{projectKey}/recipes/{recipeName}
      operations:
      - name: getrecipe
        method: GET
        description: Dataiku Get recipe details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deleterecipe
        method: DELETE
        description: Dataiku Delete a recipe
        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-recipes-rest
    port: 8080
    description: REST adapter for Dataiku DSS Public API — Recipes. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/projects/{projectkey}/recipes
      name: projects-projectkey-recipes
      description: REST surface for projects-projectKey-recipes.
      operations:
      - method: GET
        name: listrecipes
        description: Dataiku List recipes
        call: public-recipes.listrecipes
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{projectkey}/recipes/{recipename}
      name: projects-projectkey-recipes-recipename
      description: REST surface for projects-projectKey-recipes-recipeName.
      operations:
      - method: GET
        name: getrecipe
        description: Dataiku Get recipe details
        call: public-recipes.getrecipe
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleterecipe
        description: Dataiku Delete a recipe
        call: public-recipes.deleterecipe
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: public-recipes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Dataiku DSS Public API — Recipes. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: dataiku-list-recipes
      description: Dataiku List recipes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: public-recipes.listrecipes
      outputParameters:
      - type: object
        mapping: $.
    - name: dataiku-get-recipe-details
      description: Dataiku Get recipe details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: public-recipes.getrecipe
      outputParameters:
      - type: object
        mapping: $.
    - name: dataiku-delete-recipe
      description: Dataiku Delete a recipe
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: public-recipes.deleterecipe
      outputParameters:
      - type: object
        mapping: $.