Unified.to · Capability

Unified.to API — connection

Unified.to API — connection. 6 operations. Lead operation: List All Connections. Self-contained Naftiko capability covering one Unified To business surface.

Run with Naftiko Unified Toconnection

What You Can Do

GET
Listunifiedconnections — List All Connections
/v1/unified/connection
POST
Createunifiedconnection — Create Connection
/v1/unified/connection
DELETE
Removeunifiedconnection — Remove Connection
/v1/unified/connection/{id}
GET
Getunifiedconnection — Retrieve Connection
/v1/unified/connection/{id}
PATCH
Patchunifiedconnection — Update Connection
/v1/unified/connection/{id}
PUT
Updateunifiedconnection — Update Connection
/v1/unified/connection/{id}

MCP Tools

list-all-connections

List All Connections

read-only idempotent
create-connection

Create Connection

remove-connection

Remove Connection

idempotent
retrieve-connection

Retrieve Connection

read-only idempotent
update-connection

Update Connection

idempotent
update-connection-2

Update Connection

idempotent

Capability Spec

full-connection.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Unified.to  API — connection
  description: 'Unified.to  API — connection. 6 operations. Lead operation: List All Connections. Self-contained Naftiko capability
    covering one Unified To business surface.'
  tags:
  - Unified To
  - connection
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    UNIFIED_TO_API_KEY: UNIFIED_TO_API_KEY
capability:
  consumes:
  - type: http
    namespace: full-connection
    baseUri: https://api.unified.to
    description: Unified.to  API — connection business capability. Self-contained, no shared references.
    resources:
    - name: unified-connection
      path: /unified/connection
      operations:
      - name: listunifiedconnections
        method: GET
        description: List All Connections
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: number
        - name: offset
          in: query
          type: number
        - name: updated_gte
          in: query
          type: string
          description: Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ
            format)
        - name: sort
          in: query
          type: string
        - name: order
          in: query
          type: string
        - name: external_xref
          in: query
          type: string
          description: Filter the results to only those integrations for your user referenced by this value
        - name: categories
          in: query
          type: array
          description: Filter the results on these categories
        - name: env
          in: query
          type: string
      - name: createunifiedconnection
        method: POST
        description: Create Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: unified-connection-id
      path: /unified/connection/{id}
      operations:
      - name: removeunifiedconnection
        method: DELETE
        description: Remove Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: ID of the Connection
          required: true
      - name: getunifiedconnection
        method: GET
        description: Retrieve Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: ID of the Connection
          required: true
      - name: patchunifiedconnection
        method: PATCH
        description: Update Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: ID of the Connection
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: updateunifiedconnection
        method: PUT
        description: Update Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: ID of the Connection
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: authorization
      value: '{{env.UNIFIED_TO_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: full-connection-rest
    port: 8080
    description: REST adapter for Unified.to  API — connection. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/unified/connection
      name: unified-connection
      description: REST surface for unified-connection.
      operations:
      - method: GET
        name: listunifiedconnections
        description: List All Connections
        call: full-connection.listunifiedconnections
        with:
          limit: rest.limit
          offset: rest.offset
          updated_gte: rest.updated_gte
          sort: rest.sort
          order: rest.order
          external_xref: rest.external_xref
          categories: rest.categories
          env: rest.env
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createunifiedconnection
        description: Create Connection
        call: full-connection.createunifiedconnection
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/unified/connection/{id}
      name: unified-connection-id
      description: REST surface for unified-connection-id.
      operations:
      - method: DELETE
        name: removeunifiedconnection
        description: Remove Connection
        call: full-connection.removeunifiedconnection
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getunifiedconnection
        description: Retrieve Connection
        call: full-connection.getunifiedconnection
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchunifiedconnection
        description: Update Connection
        call: full-connection.patchunifiedconnection
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateunifiedconnection
        description: Update Connection
        call: full-connection.updateunifiedconnection
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: full-connection-mcp
    port: 9090
    transport: http
    description: MCP adapter for Unified.to  API — connection. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-all-connections
      description: List All Connections
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: full-connection.listunifiedconnections
      with:
        limit: tools.limit
        offset: tools.offset
        updated_gte: tools.updated_gte
        sort: tools.sort
        order: tools.order
        external_xref: tools.external_xref
        categories: tools.categories
        env: tools.env
      outputParameters:
      - type: object
        mapping: $.
    - name: create-connection
      description: Create Connection
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: full-connection.createunifiedconnection
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: remove-connection
      description: Remove Connection
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: full-connection.removeunifiedconnection
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-connection
      description: Retrieve Connection
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: full-connection.getunifiedconnection
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-connection
      description: Update Connection
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: full-connection.patchunifiedconnection
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: update-connection-2
      description: Update Connection
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: full-connection.updateunifiedconnection
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.