Boomi · Capability

Boomi DataHub API — Models

Boomi DataHub API — Models. 5 operations. Lead operation: Boomi List models. Self-contained Naftiko capability covering one Boomi business surface.

Run with Naftiko BoomiModels

What You Can Do

GET
Listmodels — Boomi List models
/v1/repositories/{repositoryid}/models
POST
Createmodel — Boomi Create a model
/v1/repositories/{repositoryid}/models
GET
Getmodel — Boomi Get a model
/v1/repositories/{repositoryid}/models/{modelid}
DELETE
Deletemodel — Boomi Delete a model
/v1/repositories/{repositoryid}/models/{modelid}
POST
Publishmodel — Boomi Publish a model
/v1/repositories/{repositoryid}/models/{modelid}/publish

MCP Tools

boomi-list-models

Boomi List models

read-only idempotent
boomi-create-model

Boomi Create a model

boomi-get-model

Boomi Get a model

read-only idempotent
boomi-delete-model

Boomi Delete a model

idempotent
boomi-publish-model

Boomi Publish a model

Capability Spec

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