Coveo · Capability

Coveo Source API — Source Extension Configurations

Coveo Source API — Source Extension Configurations. 2 operations. Lead operation: List Extension Configurations. Self-contained Naftiko capability covering one Coveo business surface.

Run with Naftiko CoveoSourceSource Extension Configurations

What You Can Do

GET
Getsourceextensions — List Extension Configurations
/v1/organizations/{organizationid}/sources/{sourceid}/extensions
PUT
Setsourceextensions — Update Extension Configurations
/v1/organizations/{organizationid}/sources/{sourceid}/extensions

MCP Tools

list-extension-configurations

List Extension Configurations

read-only idempotent
update-extension-configurations

Update Extension Configurations

idempotent

Capability Spec

source-source-extension-configurations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Coveo Source API — Source Extension Configurations
  description: 'Coveo Source API — Source Extension Configurations. 2 operations. Lead operation: List Extension Configurations.
    Self-contained Naftiko capability covering one Coveo business surface.'
  tags:
  - Coveo
  - Source
  - Source Extension Configurations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    COVEO_API_KEY: COVEO_API_KEY
capability:
  consumes:
  - type: http
    namespace: source-source-extension-configurations
    baseUri: https://platform.cloud.coveo.com
    description: Coveo Source API — Source Extension Configurations business capability. Self-contained, no shared references.
    authentication:
      type: bearer
      token: '{{env.COVEO_API_KEY}}'
    resources:
    - name: rest-organizations-organizationId-sources-sourceId-extensions
      path: /rest/organizations/{organizationId}/sources/{sourceId}/extensions
      operations:
      - name: getsourceextensions
        method: GET
        description: List Extension Configurations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organizationId
          in: path
          type: string
          description: The unique identifier of the target [organization](https://docs.coveo.com/en/185/).<br />**Example:**
            `mycoveocloudv2organizationg8tp8wu3`
          required: true
        - name: sourceId
          in: path
          type: string
          description: The unique identifier of the target [source](https://docs.coveo.com/en/246/).<br />**Example:** `mycoveocloudv2organizationg8tp8wu3-gravodalyysjsu34camnvxm2d2y`
          required: true
      - name: setsourceextensions
        method: PUT
        description: Update Extension Configurations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organizationId
          in: path
          type: string
          description: The unique identifier of the target [organization](https://docs.coveo.com/en/185/).<br />**Example:**
            `mycoveocloudv2organizationg8tp8wu3`
          required: true
        - name: sourceId
          in: path
          type: string
          description: The unique identifier of the target [source](https://docs.coveo.com/en/246/).<br />**Example:** `mycoveocloudv2organizationg8tp8wu3-gravodalyysjsu34camnvxm2d2y`
          required: true
        - name: rebuild
          in: query
          type: boolean
          description: Whether to rebuild the [source](https://docs.coveo.com/en/246/) after the operation.<br />**Default:**
            `false`
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: source-source-extension-configurations-rest
    port: 8080
    description: REST adapter for Coveo Source API — Source Extension Configurations. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/organizations/{organizationid}/sources/{sourceid}/extensions
      name: rest-organizations-organizationid-sources-sourceid-extensions
      description: REST surface for rest-organizations-organizationId-sources-sourceId-extensions.
      operations:
      - method: GET
        name: getsourceextensions
        description: List Extension Configurations
        call: source-source-extension-configurations.getsourceextensions
        with:
          organizationId: rest.organizationId
          sourceId: rest.sourceId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: setsourceextensions
        description: Update Extension Configurations
        call: source-source-extension-configurations.setsourceextensions
        with:
          organizationId: rest.organizationId
          sourceId: rest.sourceId
          rebuild: rest.rebuild
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: source-source-extension-configurations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Coveo Source API — Source Extension Configurations. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-extension-configurations
      description: List Extension Configurations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: source-source-extension-configurations.getsourceextensions
      with:
        organizationId: tools.organizationId
        sourceId: tools.sourceId
      outputParameters:
      - type: object
        mapping: $.
    - name: update-extension-configurations
      description: Update Extension Configurations
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: source-source-extension-configurations.setsourceextensions
      with:
        organizationId: tools.organizationId
        sourceId: tools.sourceId
        rebuild: tools.rebuild
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.