Hightouch · Capability

Hightouch Management API — Destinations

Hightouch Management API — Destinations. 2 operations. Lead operation: List destinations. Self-contained Naftiko capability covering one Hightouch business surface.

Run with Naftiko HightouchDestinations

What You Can Do

GET
Listdestinations — List destinations
/v1/api/v1/destinations
GET
Getdestination — Get a destination
/v1/api/v1/destinations/{id}

MCP Tools

list-destinations

List destinations

read-only idempotent
get-destination

Get a destination

read-only idempotent

Capability Spec

hightouch-destinations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Hightouch Management API — Destinations
  description: 'Hightouch Management API — Destinations. 2 operations. Lead operation: List destinations. Self-contained Naftiko
    capability covering one Hightouch business surface.'
  tags:
  - Hightouch
  - Destinations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    HIGHTOUCH_API_KEY: HIGHTOUCH_API_KEY
capability:
  consumes:
  - type: http
    namespace: hightouch-destinations
    baseUri: https://api.hightouch.com
    description: Hightouch Management API — Destinations business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-destinations
      path: /api/v1/destinations
      operations:
      - name: listdestinations
        method: GET
        description: List destinations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-v1-destinations-id
      path: /api/v1/destinations/{id}
      operations:
      - name: getdestination
        method: GET
        description: Get a destination
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.HIGHTOUCH_API_KEY}}'
  exposes:
  - type: rest
    namespace: hightouch-destinations-rest
    port: 8080
    description: REST adapter for Hightouch Management API — Destinations. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/v1/destinations
      name: api-v1-destinations
      description: REST surface for api-v1-destinations.
      operations:
      - method: GET
        name: listdestinations
        description: List destinations
        call: hightouch-destinations.listdestinations
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/destinations/{id}
      name: api-v1-destinations-id
      description: REST surface for api-v1-destinations-id.
      operations:
      - method: GET
        name: getdestination
        description: Get a destination
        call: hightouch-destinations.getdestination
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: hightouch-destinations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Hightouch Management API — Destinations. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-destinations
      description: List destinations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: hightouch-destinations.listdestinations
      outputParameters:
      - type: object
        mapping: $.
    - name: get-destination
      description: Get a destination
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: hightouch-destinations.getdestination
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.