Airbyte · Capability

airbyte-api — Regions

airbyte-api — Regions. 5 operations. Lead operation: Airbyte List Regions. Self-contained Naftiko capability covering one Airbyte business surface.

Run with Naftiko AirbyteRegions

What You Can Do

GET
Listregions — Airbyte List Regions
/v1/regions
POST
Createregion — Airbyte Create a Region
/v1/regions
GET
Getregion — Airbyte Get a Region
/v1/regions/{regionid}
PATCH
Updateregion — Airbyte Update a Region
/v1/regions/{regionid}
DELETE
Deleteregion — Airbyte Delete a Region
/v1/regions/{regionid}

MCP Tools

airbyte-list-regions

Airbyte List Regions

read-only idempotent
airbyte-create-region

Airbyte Create a Region

airbyte-get-region

Airbyte Get a Region

read-only idempotent
airbyte-update-region

Airbyte Update a Region

idempotent
airbyte-delete-region

Airbyte Delete a Region

idempotent

Capability Spec

airbyte-regions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: airbyte-api — Regions
  description: 'airbyte-api — Regions. 5 operations. Lead operation: Airbyte List Regions. Self-contained Naftiko capability
    covering one Airbyte business surface.'
  tags:
  - Airbyte
  - Regions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AIRBYTE_API_KEY: AIRBYTE_API_KEY
capability:
  consumes:
  - type: http
    namespace: airbyte-regions
    baseUri: https://api.airbyte.com/v1
    description: airbyte-api — Regions business capability. Self-contained, no shared references.
    resources:
    - name: regions
      path: /regions
      operations:
      - name: listregions
        method: GET
        description: Airbyte List Regions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organizationId
          in: query
          type: string
          description: The UUID of the organization to list regions for
          required: true
      - name: createregion
        method: POST
        description: Airbyte Create a Region
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: regions-regionId
      path: /regions/{regionId}
      operations:
      - name: getregion
        method: GET
        description: Airbyte Get a Region
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateregion
        method: PATCH
        description: Airbyte Update a Region
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteregion
        method: DELETE
        description: Airbyte Delete a Region
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: airbyte-regions-rest
    port: 8080
    description: REST adapter for airbyte-api — Regions. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/regions
      name: regions
      description: REST surface for regions.
      operations:
      - method: GET
        name: listregions
        description: Airbyte List Regions
        call: airbyte-regions.listregions
        with:
          organizationId: rest.organizationId
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createregion
        description: Airbyte Create a Region
        call: airbyte-regions.createregion
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/regions/{regionid}
      name: regions-regionid
      description: REST surface for regions-regionId.
      operations:
      - method: GET
        name: getregion
        description: Airbyte Get a Region
        call: airbyte-regions.getregion
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateregion
        description: Airbyte Update a Region
        call: airbyte-regions.updateregion
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteregion
        description: Airbyte Delete a Region
        call: airbyte-regions.deleteregion
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: airbyte-regions-mcp
    port: 9090
    transport: http
    description: MCP adapter for airbyte-api — Regions. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: airbyte-list-regions
      description: Airbyte List Regions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: airbyte-regions.listregions
      with:
        organizationId: tools.organizationId
      outputParameters:
      - type: object
        mapping: $.
    - name: airbyte-create-region
      description: Airbyte Create a Region
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: airbyte-regions.createregion
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: airbyte-get-region
      description: Airbyte Get a Region
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: airbyte-regions.getregion
      outputParameters:
      - type: object
        mapping: $.
    - name: airbyte-update-region
      description: Airbyte Update a Region
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: airbyte-regions.updateregion
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: airbyte-delete-region
      description: Airbyte Delete a Region
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: airbyte-regions.deleteregion
      outputParameters:
      - type: object
        mapping: $.