Boomi · Capability

Boomi DataHub API — Sources

Boomi DataHub API — Sources. 2 operations. Lead operation: Boomi List sources. Self-contained Naftiko capability covering one Boomi business surface.

Run with Naftiko BoomiSources

What You Can Do

GET
Listsources — Boomi List sources
/v1/repositories/{repositoryid}/sources
POST
Createsource — Boomi Create a source
/v1/repositories/{repositoryid}/sources

MCP Tools

boomi-list-sources

Boomi List sources

read-only idempotent
boomi-create-source

Boomi Create a source

Capability Spec

datahub-sources.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Boomi DataHub API — Sources
  description: 'Boomi DataHub API — Sources. 2 operations. Lead operation: Boomi List sources. Self-contained Naftiko capability
    covering one Boomi business surface.'
  tags:
  - Boomi
  - Sources
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BOOMI_API_KEY: BOOMI_API_KEY
capability:
  consumes:
  - type: http
    namespace: datahub-sources
    baseUri: https://mdh.boomi.com/mdh
    description: Boomi DataHub API — Sources business capability. Self-contained, no shared references.
    resources:
    - name: repositories-repositoryId-sources
      path: /repositories/{repositoryId}/sources
      operations:
      - name: listsources
        method: GET
        description: Boomi List sources
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createsource
        method: POST
        description: Boomi Create a source
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.BOOMI_API_KEY}}'
  exposes:
  - type: rest
    namespace: datahub-sources-rest
    port: 8080
    description: REST adapter for Boomi DataHub API — Sources. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/repositories/{repositoryid}/sources
      name: repositories-repositoryid-sources
      description: REST surface for repositories-repositoryId-sources.
      operations:
      - method: GET
        name: listsources
        description: Boomi List sources
        call: datahub-sources.listsources
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createsource
        description: Boomi Create a source
        call: datahub-sources.createsource
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: datahub-sources-mcp
    port: 9090
    transport: http
    description: MCP adapter for Boomi DataHub API — Sources. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: boomi-list-sources
      description: Boomi List sources
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: datahub-sources.listsources
      outputParameters:
      - type: object
        mapping: $.
    - name: boomi-create-source
      description: Boomi Create a source
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: datahub-sources.createsource
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.