Airbyte · Capability

airbyte-api — Jobs

airbyte-api — Jobs. 4 operations. Lead operation: Airbyte List Jobs by Sync Type. Self-contained Naftiko capability covering one Airbyte business surface.

Run with Naftiko AirbyteJobs

What You Can Do

GET
Listjobs — Airbyte List Jobs by Sync Type
/v1/jobs
POST
Createjob — Airbyte Trigger a Sync or Reset Job of a Connection
/v1/jobs
GET
Getjob — Airbyte Get Job Status and Details
/v1/jobs/{jobid}
DELETE
Canceljob — Airbyte Cancel a Running Job
/v1/jobs/{jobid}

MCP Tools

airbyte-list-jobs-sync-type

Airbyte List Jobs by Sync Type

read-only idempotent
airbyte-trigger-sync-reset-job

Airbyte Trigger a Sync or Reset Job of a Connection

airbyte-get-job-status-and

Airbyte Get Job Status and Details

read-only idempotent
airbyte-cancel-running-job

Airbyte Cancel a Running Job

idempotent

Capability Spec

airbyte-jobs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: airbyte-api — Jobs
  description: 'airbyte-api — Jobs. 4 operations. Lead operation: Airbyte List Jobs by Sync Type. Self-contained Naftiko capability
    covering one Airbyte business surface.'
  tags:
  - Airbyte
  - Jobs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AIRBYTE_API_KEY: AIRBYTE_API_KEY
capability:
  consumes:
  - type: http
    namespace: airbyte-jobs
    baseUri: https://api.airbyte.com/v1
    description: airbyte-api — Jobs business capability. Self-contained, no shared references.
    resources:
    - name: jobs
      path: /jobs
      operations:
      - name: listjobs
        method: GET
        description: Airbyte List Jobs by Sync Type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: connectionId
          in: query
          type: string
          description: Filter the Jobs by connectionId.
        - name: limit
          in: query
          type: integer
          description: Set the limit on the number of Jobs returned. The default is 20 Jobs.
        - name: offset
          in: query
          type: integer
          description: Set the offset to start at when returning Jobs. The default is 0.
        - name: jobType
          in: query
          type: string
          description: Filter the Jobs by jobType.
        - name: workspaceIds
          in: query
          type: array
          description: The UUIDs of the workspaces you wish to list jobs for. Empty list will retrieve all allowed workspaces.
        - name: status
          in: query
          type: string
          description: The Job status you want to filter by
        - name: createdAtStart
          in: query
          type: string
          description: The start date to filter by
        - name: createdAtEnd
          in: query
          type: string
          description: The end date to filter by
        - name: updatedAtStart
          in: query
          type: string
          description: The start date to filter by
        - name: updatedAtEnd
          in: query
          type: string
          description: The end date to filter by
        - name: orderBy
          in: query
          type: string
          description: The field and method to use for ordering
      - name: createjob
        method: POST
        description: Airbyte Trigger a Sync or Reset Job of a Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: jobs-jobId
      path: /jobs/{jobId}
      operations:
      - name: getjob
        method: GET
        description: Airbyte Get Job Status and Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: canceljob
        method: DELETE
        description: Airbyte Cancel a Running Job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: airbyte-jobs-rest
    port: 8080
    description: REST adapter for airbyte-api — Jobs. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/jobs
      name: jobs
      description: REST surface for jobs.
      operations:
      - method: GET
        name: listjobs
        description: Airbyte List Jobs by Sync Type
        call: airbyte-jobs.listjobs
        with:
          connectionId: rest.connectionId
          limit: rest.limit
          offset: rest.offset
          jobType: rest.jobType
          workspaceIds: rest.workspaceIds
          status: rest.status
          createdAtStart: rest.createdAtStart
          createdAtEnd: rest.createdAtEnd
          updatedAtStart: rest.updatedAtStart
          updatedAtEnd: rest.updatedAtEnd
          orderBy: rest.orderBy
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createjob
        description: Airbyte Trigger a Sync or Reset Job of a Connection
        call: airbyte-jobs.createjob
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/jobs/{jobid}
      name: jobs-jobid
      description: REST surface for jobs-jobId.
      operations:
      - method: GET
        name: getjob
        description: Airbyte Get Job Status and Details
        call: airbyte-jobs.getjob
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: canceljob
        description: Airbyte Cancel a Running Job
        call: airbyte-jobs.canceljob
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: airbyte-jobs-mcp
    port: 9090
    transport: http
    description: MCP adapter for airbyte-api — Jobs. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: airbyte-list-jobs-sync-type
      description: Airbyte List Jobs by Sync Type
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: airbyte-jobs.listjobs
      with:
        connectionId: tools.connectionId
        limit: tools.limit
        offset: tools.offset
        jobType: tools.jobType
        workspaceIds: tools.workspaceIds
        status: tools.status
        createdAtStart: tools.createdAtStart
        createdAtEnd: tools.createdAtEnd
        updatedAtStart: tools.updatedAtStart
        updatedAtEnd: tools.updatedAtEnd
        orderBy: tools.orderBy
      outputParameters:
      - type: object
        mapping: $.
    - name: airbyte-trigger-sync-reset-job
      description: Airbyte Trigger a Sync or Reset Job of a Connection
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: airbyte-jobs.createjob
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: airbyte-get-job-status-and
      description: Airbyte Get Job Status and Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: airbyte-jobs.getjob
      outputParameters:
      - type: object
        mapping: $.
    - name: airbyte-cancel-running-job
      description: Airbyte Cancel a Running Job
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: airbyte-jobs.canceljob
      outputParameters:
      - type: object
        mapping: $.