Talend · Capability

Talend Cloud Orchestration API — Connections

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

Run with Naftiko TalendConnections

What You Can Do

GET
Listconnections — List Connections
/v1/orchestration/connections
POST
Createconnection — Create Connection
/v1/orchestration/connections

MCP Tools

list-connections

List Connections

read-only idempotent
create-connection

Create Connection

Capability Spec

orchestration-connections.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Talend Cloud Orchestration API — Connections
  description: 'Talend Cloud Orchestration API — Connections. 2 operations. Lead operation: List Connections. Self-contained
    Naftiko capability covering one Talend business surface.'
  tags:
  - Talend
  - Connections
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TALEND_API_KEY: TALEND_API_KEY
capability:
  consumes:
  - type: http
    namespace: orchestration-connections
    baseUri: https://api.{region}.cloud.talend.com
    description: Talend Cloud Orchestration API — Connections business capability. Self-contained, no shared references.
    resources:
    - name: orchestration-connections
      path: /orchestration/connections
      operations:
      - name: listconnections
        method: GET
        description: List Connections
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createconnection
        method: POST
        description: Create Connection
        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-connections-rest
    port: 8080
    description: REST adapter for Talend Cloud Orchestration API — Connections. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/orchestration/connections
      name: orchestration-connections
      description: REST surface for orchestration-connections.
      operations:
      - method: GET
        name: listconnections
        description: List Connections
        call: orchestration-connections.listconnections
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createconnection
        description: Create Connection
        call: orchestration-connections.createconnection
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: orchestration-connections-mcp
    port: 9090
    transport: http
    description: MCP adapter for Talend Cloud Orchestration API — Connections. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-connections
      description: List Connections
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: orchestration-connections.listconnections
      outputParameters:
      - type: object
        mapping: $.
    - name: create-connection
      description: Create Connection
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: orchestration-connections.createconnection
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.