Airbyte · Capability

airbyte-api — public_workspaces

airbyte-api — public_workspaces. 6 operations. Lead operation: Airbyte List Workspaces. Self-contained Naftiko capability covering one Airbyte business surface.

Run with Naftiko Airbytepublic_workspaces

What You Can Do

GET
Listworkspaces — Airbyte List Workspaces
/v1/workspaces
POST
Createworkspace — Airbyte Create a Workspace
/v1/workspaces
GET
Getworkspace — Airbyte Get Workspace Details
/v1/workspaces/{workspaceid}
PATCH
Updateworkspace — Airbyte Update a Workspace
/v1/workspaces/{workspaceid}
DELETE
Deleteworkspace — Airbyte Delete a Workspace
/v1/workspaces/{workspaceid}
PUT
Createorupdateworkspaceoauthcredentials — Airbyte Create OAuth Override Credentials for a Workspace and Source Type.
/v1/workspaces/{workspaceid}/oauthcredentials

MCP Tools

airbyte-list-workspaces

Airbyte List Workspaces

read-only idempotent
airbyte-create-workspace

Airbyte Create a Workspace

airbyte-get-workspace-details

Airbyte Get Workspace Details

read-only idempotent
airbyte-update-workspace

Airbyte Update a Workspace

idempotent
airbyte-delete-workspace

Airbyte Delete a Workspace

idempotent
airbyte-create-oauth-override-credentials

Airbyte Create OAuth Override Credentials for a Workspace and Source Type.

idempotent

Capability Spec

airbyte-public-workspaces.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: airbyte-api — public_workspaces
  description: 'airbyte-api — public_workspaces. 6 operations. Lead operation: Airbyte List Workspaces. Self-contained Naftiko
    capability covering one Airbyte business surface.'
  tags:
  - Airbyte
  - public_workspaces
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AIRBYTE_API_KEY: AIRBYTE_API_KEY
capability:
  consumes:
  - type: http
    namespace: airbyte-public-workspaces
    baseUri: https://api.airbyte.com/v1
    description: airbyte-api — public_workspaces business capability. Self-contained, no shared references.
    resources:
    - name: workspaces
      path: /workspaces
      operations:
      - name: listworkspaces
        method: GET
        description: Airbyte List Workspaces
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: workspaceIds
          in: query
          type: array
          description: The UUIDs of the workspaces you wish to fetch. Empty list will retrieve all allowed workspaces.
        - name: includeDeleted
          in: query
          type: boolean
          description: Include deleted workspaces in the returned results.
        - name: limit
          in: query
          type: integer
          description: Set the limit on the number of workspaces returned. The default is 20.
        - name: offset
          in: query
          type: integer
          description: Set the offset to start at when returning workspaces. The default is 0
      - name: createworkspace
        method: POST
        description: Airbyte Create a Workspace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: workspaces-workspaceId
      path: /workspaces/{workspaceId}
      operations:
      - name: getworkspace
        method: GET
        description: Airbyte Get Workspace Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateworkspace
        method: PATCH
        description: Airbyte Update a Workspace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteworkspace
        method: DELETE
        description: Airbyte Delete a Workspace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: workspaces-workspaceId-oauthCredentials
      path: /workspaces/{workspaceId}/oauthCredentials
      operations:
      - name: createorupdateworkspaceoauthcredentials
        method: PUT
        description: Airbyte Create OAuth Override Credentials for a Workspace and Source Type.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: airbyte-public-workspaces-rest
    port: 8080
    description: REST adapter for airbyte-api — public_workspaces. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/workspaces
      name: workspaces
      description: REST surface for workspaces.
      operations:
      - method: GET
        name: listworkspaces
        description: Airbyte List Workspaces
        call: airbyte-public-workspaces.listworkspaces
        with:
          workspaceIds: rest.workspaceIds
          includeDeleted: rest.includeDeleted
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createworkspace
        description: Airbyte Create a Workspace
        call: airbyte-public-workspaces.createworkspace
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/workspaces/{workspaceid}
      name: workspaces-workspaceid
      description: REST surface for workspaces-workspaceId.
      operations:
      - method: GET
        name: getworkspace
        description: Airbyte Get Workspace Details
        call: airbyte-public-workspaces.getworkspace
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateworkspace
        description: Airbyte Update a Workspace
        call: airbyte-public-workspaces.updateworkspace
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteworkspace
        description: Airbyte Delete a Workspace
        call: airbyte-public-workspaces.deleteworkspace
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/workspaces/{workspaceid}/oauthcredentials
      name: workspaces-workspaceid-oauthcredentials
      description: REST surface for workspaces-workspaceId-oauthCredentials.
      operations:
      - method: PUT
        name: createorupdateworkspaceoauthcredentials
        description: Airbyte Create OAuth Override Credentials for a Workspace and Source Type.
        call: airbyte-public-workspaces.createorupdateworkspaceoauthcredentials
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: airbyte-public-workspaces-mcp
    port: 9090
    transport: http
    description: MCP adapter for airbyte-api — public_workspaces. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: airbyte-list-workspaces
      description: Airbyte List Workspaces
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: airbyte-public-workspaces.listworkspaces
      with:
        workspaceIds: tools.workspaceIds
        includeDeleted: tools.includeDeleted
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: airbyte-create-workspace
      description: Airbyte Create a Workspace
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: airbyte-public-workspaces.createworkspace
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: airbyte-get-workspace-details
      description: Airbyte Get Workspace Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: airbyte-public-workspaces.getworkspace
      outputParameters:
      - type: object
        mapping: $.
    - name: airbyte-update-workspace
      description: Airbyte Update a Workspace
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: airbyte-public-workspaces.updateworkspace
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: airbyte-delete-workspace
      description: Airbyte Delete a Workspace
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: airbyte-public-workspaces.deleteworkspace
      outputParameters:
      - type: object
        mapping: $.
    - name: airbyte-create-oauth-override-credentials
      description: Airbyte Create OAuth Override Credentials for a Workspace and Source Type.
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: airbyte-public-workspaces.createorupdateworkspaceoauthcredentials
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.