Talend · Capability

Talend Cloud Orchestration API — Environments

Talend Cloud Orchestration API — Environments. 2 operations. Lead operation: List Environments. Self-contained Naftiko capability covering one Talend business surface.

Run with Naftiko TalendEnvironments

What You Can Do

GET
Listenvironments — List Environments
/v1/orchestration/environments
POST
Createenvironment — Create Environment
/v1/orchestration/environments

MCP Tools

list-environments

List Environments

read-only idempotent
create-environment

Create Environment

Capability Spec

orchestration-environments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Talend Cloud Orchestration API — Environments
  description: 'Talend Cloud Orchestration API — Environments. 2 operations. Lead operation: List Environments. Self-contained
    Naftiko capability covering one Talend business surface.'
  tags:
  - Talend
  - Environments
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TALEND_API_KEY: TALEND_API_KEY
capability:
  consumes:
  - type: http
    namespace: orchestration-environments
    baseUri: https://api.{region}.cloud.talend.com
    description: Talend Cloud Orchestration API — Environments business capability. Self-contained, no shared references.
    resources:
    - name: orchestration-environments
      path: /orchestration/environments
      operations:
      - name: listenvironments
        method: GET
        description: List Environments
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createenvironment
        method: POST
        description: Create Environment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.TALEND_API_KEY}}'
  exposes:
  - type: rest
    namespace: orchestration-environments-rest
    port: 8080
    description: REST adapter for Talend Cloud Orchestration API — Environments. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/orchestration/environments
      name: orchestration-environments
      description: REST surface for orchestration-environments.
      operations:
      - method: GET
        name: listenvironments
        description: List Environments
        call: orchestration-environments.listenvironments
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createenvironment
        description: Create Environment
        call: orchestration-environments.createenvironment
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: orchestration-environments-mcp
    port: 9090
    transport: http
    description: MCP adapter for Talend Cloud Orchestration API — Environments. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-environments
      description: List Environments
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: orchestration-environments.listenvironments
      outputParameters:
      - type: object
        mapping: $.
    - name: create-environment
      description: Create Environment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: orchestration-environments.createenvironment
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.