DreamFactory · Capability

DreamFactory System API — Custom

DreamFactory System API — Custom. 2 operations. Lead operation: DreamFactory List custom settings. Self-contained Naftiko capability covering one Dreamfactory business surface.

Run with Naftiko DreamfactoryCustom

What You Can Do

GET
Listcustomsettings — DreamFactory List custom settings
/v1/system/custom
POST
Setcustomsettings — DreamFactory Set custom settings
/v1/system/custom

MCP Tools

dreamfactory-list-custom-settings

DreamFactory List custom settings

read-only idempotent
dreamfactory-set-custom-settings

DreamFactory Set custom settings

Capability Spec

system-custom.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: DreamFactory System API — Custom
  description: 'DreamFactory System API — Custom. 2 operations. Lead operation: DreamFactory List custom settings. Self-contained
    Naftiko capability covering one Dreamfactory business surface.'
  tags:
  - Dreamfactory
  - Custom
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DREAMFACTORY_API_KEY: DREAMFACTORY_API_KEY
capability:
  consumes:
  - type: http
    namespace: system-custom
    baseUri: https://{instance}/api/v2
    description: DreamFactory System API — Custom business capability. Self-contained, no shared references.
    resources:
    - name: system-custom
      path: /system/custom
      operations:
      - name: listcustomsettings
        method: GET
        description: DreamFactory List custom settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: setcustomsettings
        method: POST
        description: DreamFactory Set custom settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: X-DreamFactory-Session-Token
      value: '{{env.DREAMFACTORY_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: system-custom-rest
    port: 8080
    description: REST adapter for DreamFactory System API — Custom. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/system/custom
      name: system-custom
      description: REST surface for system-custom.
      operations:
      - method: GET
        name: listcustomsettings
        description: DreamFactory List custom settings
        call: system-custom.listcustomsettings
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: setcustomsettings
        description: DreamFactory Set custom settings
        call: system-custom.setcustomsettings
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: system-custom-mcp
    port: 9090
    transport: http
    description: MCP adapter for DreamFactory System API — Custom. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: dreamfactory-list-custom-settings
      description: DreamFactory List custom settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: system-custom.listcustomsettings
      outputParameters:
      - type: object
        mapping: $.
    - name: dreamfactory-set-custom-settings
      description: DreamFactory Set custom settings
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: system-custom.setcustomsettings
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.