Talend · Capability

Talend Cloud Processing API — Run Profiles

Talend Cloud Processing API — Run Profiles. 2 operations. Lead operation: Create Run Profile. Self-contained Naftiko capability covering one Talend business surface.

Run with Naftiko TalendRun Profiles

What You Can Do

POST
Createrunprofile — Create Run Profile
/v1/processing/run-profiles
POST
Searchrunprofiles — Search Run Profiles
/v1/processing/run-profiles/search

MCP Tools

create-run-profile

Create Run Profile

search-run-profiles

Search Run Profiles

read-only

Capability Spec

processing-run-profiles.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Talend Cloud Processing API — Run Profiles
  description: 'Talend Cloud Processing API — Run Profiles. 2 operations. Lead operation: Create Run Profile. Self-contained
    Naftiko capability covering one Talend business surface.'
  tags:
  - Talend
  - Run Profiles
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TALEND_API_KEY: TALEND_API_KEY
capability:
  consumes:
  - type: http
    namespace: processing-run-profiles
    baseUri: https://api.{region}.cloud.talend.com
    description: Talend Cloud Processing API — Run Profiles business capability. Self-contained, no shared references.
    resources:
    - name: processing-run-profiles
      path: /processing/run-profiles
      operations:
      - name: createrunprofile
        method: POST
        description: Create Run Profile
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: processing-run-profiles-search
      path: /processing/run-profiles/search
      operations:
      - name: searchrunprofiles
        method: POST
        description: Search Run Profiles
        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: processing-run-profiles-rest
    port: 8080
    description: REST adapter for Talend Cloud Processing API — Run Profiles. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/processing/run-profiles
      name: processing-run-profiles
      description: REST surface for processing-run-profiles.
      operations:
      - method: POST
        name: createrunprofile
        description: Create Run Profile
        call: processing-run-profiles.createrunprofile
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/processing/run-profiles/search
      name: processing-run-profiles-search
      description: REST surface for processing-run-profiles-search.
      operations:
      - method: POST
        name: searchrunprofiles
        description: Search Run Profiles
        call: processing-run-profiles.searchrunprofiles
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: processing-run-profiles-mcp
    port: 9090
    transport: http
    description: MCP adapter for Talend Cloud Processing API — Run Profiles. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: create-run-profile
      description: Create Run Profile
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: processing-run-profiles.createrunprofile
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: search-run-profiles
      description: Search Run Profiles
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: processing-run-profiles.searchrunprofiles
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.