Xceptor · Capability

Xceptor REST API — Data Sources

Xceptor REST API — Data Sources. 2 operations. Lead operation: Xceptor List Data Sources. Self-contained Naftiko capability covering one Xceptor business surface.

Run with Naftiko XceptorData Sources

What You Can Do

GET
Listdatasources — Xceptor List Data Sources
/v1/datasources
GET
Getdatasource — Xceptor Get Data Source Details
/v1/datasources/{datasourceid}

MCP Tools

xceptor-list-data-sources

Xceptor List Data Sources

read-only idempotent
xceptor-get-data-source-details

Xceptor Get Data Source Details

read-only idempotent

Capability Spec

rest-data-sources.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Xceptor REST API — Data Sources
  description: 'Xceptor REST API — Data Sources. 2 operations. Lead operation: Xceptor List Data Sources. Self-contained Naftiko
    capability covering one Xceptor business surface.'
  tags:
  - Xceptor
  - Data Sources
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    XCEPTOR_API_KEY: XCEPTOR_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-data-sources
    baseUri: https://api.xceptor.com/v1
    description: Xceptor REST API — Data Sources business capability. Self-contained, no shared references.
    resources:
    - name: datasources
      path: /datasources
      operations:
      - name: listdatasources
        method: GET
        description: Xceptor List Data Sources
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: type
          in: query
          type: string
          description: Filter by data source type
    - name: datasources-datasourceId
      path: /datasources/{datasourceId}
      operations:
      - name: getdatasource
        method: GET
        description: Xceptor Get Data Source Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.XCEPTOR_API_KEY}}'
  exposes:
  - type: rest
    namespace: rest-data-sources-rest
    port: 8080
    description: REST adapter for Xceptor REST API — Data Sources. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/datasources
      name: datasources
      description: REST surface for datasources.
      operations:
      - method: GET
        name: listdatasources
        description: Xceptor List Data Sources
        call: rest-data-sources.listdatasources
        with:
          type: rest.type
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/datasources/{datasourceid}
      name: datasources-datasourceid
      description: REST surface for datasources-datasourceId.
      operations:
      - method: GET
        name: getdatasource
        description: Xceptor Get Data Source Details
        call: rest-data-sources.getdatasource
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-data-sources-mcp
    port: 9090
    transport: http
    description: MCP adapter for Xceptor REST API — Data Sources. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: xceptor-list-data-sources
      description: Xceptor List Data Sources
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-data-sources.listdatasources
      with:
        type: tools.type
      outputParameters:
      - type: object
        mapping: $.
    - name: xceptor-get-data-source-details
      description: Xceptor Get Data Source Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-data-sources.getdatasource
      outputParameters:
      - type: object
        mapping: $.