Talend · Capability

Talend Cloud Processing API — Plan Executions

Talend Cloud Processing API — Plan Executions. 4 operations. Lead operation: List Plan Executions. Self-contained Naftiko capability covering one Talend business surface.

Run with Naftiko TalendPlan Executions

What You Can Do

GET
Listplanexecutions — List Plan Executions
/v1/processing/executables/plans/executions
POST
Executeplan — Execute Plan
/v1/processing/executions/plans
GET
Getplanexecutionstatus — Get Plan Execution Status
/v1/processing/executions/plans/{planexecutionid}
GET
Getplanexecutionsteps — Get Plan Execution Steps
/v1/processing/executions/plans/{planexecutionid}/steps

MCP Tools

list-plan-executions

List Plan Executions

read-only idempotent
execute-plan

Execute Plan

get-plan-execution-status

Get Plan Execution Status

read-only idempotent
get-plan-execution-steps

Get Plan Execution Steps

read-only idempotent

Capability Spec

processing-plan-executions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Talend Cloud Processing API — Plan Executions
  description: 'Talend Cloud Processing API — Plan Executions. 4 operations. Lead operation: List Plan Executions. Self-contained
    Naftiko capability covering one Talend business surface.'
  tags:
  - Talend
  - Plan Executions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TALEND_API_KEY: TALEND_API_KEY
capability:
  consumes:
  - type: http
    namespace: processing-plan-executions
    baseUri: https://api.{region}.cloud.talend.com
    description: Talend Cloud Processing API — Plan Executions business capability. Self-contained, no shared references.
    resources:
    - name: processing-executables-plans-executions
      path: /processing/executables/plans/executions
      operations:
      - name: listplanexecutions
        method: GET
        description: List Plan Executions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: planId
          in: query
          type: string
        - name: status
          in: query
          type: string
    - name: processing-executions-plans
      path: /processing/executions/plans
      operations:
      - name: executeplan
        method: POST
        description: Execute Plan
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: processing-executions-plans-planExecutionId
      path: /processing/executions/plans/{planExecutionId}
      operations:
      - name: getplanexecutionstatus
        method: GET
        description: Get Plan Execution Status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: planExecutionId
          in: path
          type: string
          description: Plan execution identifier
          required: true
    - name: processing-executions-plans-planExecutionId-steps
      path: /processing/executions/plans/{planExecutionId}/steps
      operations:
      - name: getplanexecutionsteps
        method: GET
        description: Get Plan Execution Steps
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: planExecutionId
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.TALEND_API_KEY}}'
  exposes:
  - type: rest
    namespace: processing-plan-executions-rest
    port: 8080
    description: REST adapter for Talend Cloud Processing API — Plan Executions. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/processing/executables/plans/executions
      name: processing-executables-plans-executions
      description: REST surface for processing-executables-plans-executions.
      operations:
      - method: GET
        name: listplanexecutions
        description: List Plan Executions
        call: processing-plan-executions.listplanexecutions
        with:
          planId: rest.planId
          status: rest.status
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/processing/executions/plans
      name: processing-executions-plans
      description: REST surface for processing-executions-plans.
      operations:
      - method: POST
        name: executeplan
        description: Execute Plan
        call: processing-plan-executions.executeplan
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/processing/executions/plans/{planexecutionid}
      name: processing-executions-plans-planexecutionid
      description: REST surface for processing-executions-plans-planExecutionId.
      operations:
      - method: GET
        name: getplanexecutionstatus
        description: Get Plan Execution Status
        call: processing-plan-executions.getplanexecutionstatus
        with:
          planExecutionId: rest.planExecutionId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/processing/executions/plans/{planexecutionid}/steps
      name: processing-executions-plans-planexecutionid-steps
      description: REST surface for processing-executions-plans-planExecutionId-steps.
      operations:
      - method: GET
        name: getplanexecutionsteps
        description: Get Plan Execution Steps
        call: processing-plan-executions.getplanexecutionsteps
        with:
          planExecutionId: rest.planExecutionId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: processing-plan-executions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Talend Cloud Processing API — Plan Executions. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-plan-executions
      description: List Plan Executions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: processing-plan-executions.listplanexecutions
      with:
        planId: tools.planId
        status: tools.status
      outputParameters:
      - type: object
        mapping: $.
    - name: execute-plan
      description: Execute Plan
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: processing-plan-executions.executeplan
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-plan-execution-status
      description: Get Plan Execution Status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: processing-plan-executions.getplanexecutionstatus
      with:
        planExecutionId: tools.planExecutionId
      outputParameters:
      - type: object
        mapping: $.
    - name: get-plan-execution-steps
      description: Get Plan Execution Steps
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: processing-plan-executions.getplanexecutionsteps
      with:
        planExecutionId: tools.planExecutionId
      outputParameters:
      - type: object
        mapping: $.