Unified.to · Capability

Unified.to API — passthrough

Unified.to API — passthrough. 5 operations. Lead operation: Passthrough DELETE. Self-contained Naftiko capability covering one Unified To business surface.

Run with Naftiko Unified Topassthrough

What You Can Do

DELETE
Removepassthrough — Passthrough DELETE
/v1/passthrough/{connection-id}/{path}
GET
Listpassthroughs — Passthrough GET
/v1/passthrough/{connection-id}/{path}
PATCH
Patchpassthrough — Passthrough PUT
/v1/passthrough/{connection-id}/{path}
POST
Createpassthrough — Passthrough POST
/v1/passthrough/{connection-id}/{path}
PUT
Updatepassthrough — Passthrough PUT
/v1/passthrough/{connection-id}/{path}

MCP Tools

passthrough-delete

Passthrough DELETE

idempotent
passthrough-get

Passthrough GET

read-only idempotent
passthrough-put

Passthrough PUT

idempotent
passthrough-post

Passthrough POST

passthrough-put-2

Passthrough PUT

idempotent

Capability Spec

unified-core-passthrough.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Unified.to  API — passthrough
  description: 'Unified.to  API — passthrough. 5 operations. Lead operation: Passthrough DELETE. Self-contained Naftiko capability
    covering one Unified To business surface.'
  tags:
  - Unified To
  - passthrough
  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: unified-core-passthrough
    baseUri: https://api.unified.to
    description: Unified.to  API — passthrough business capability. Self-contained, no shared references.
    resources:
    - name: passthrough-connection_id-path
      path: /passthrough/{connection_id}/{path}
      operations:
      - name: removepassthrough
        method: DELETE
        description: Passthrough DELETE
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: query
          in: query
          type: string
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: path
          in: path
          type: string
          required: true
      - name: listpassthroughs
        method: GET
        description: Passthrough GET
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: query
          in: query
          type: string
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: path
          in: path
          type: string
          required: true
      - name: patchpassthrough
        method: PATCH
        description: Passthrough PUT
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: query
          in: query
          type: string
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: path
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: createpassthrough
        method: POST
        description: Passthrough POST
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: query
          in: query
          type: string
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: path
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: updatepassthrough
        method: PUT
        description: Passthrough PUT
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: query
          in: query
          type: string
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: path
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: apikey
      key: authorization
      value: '{{env.UNIFIED_TO_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: unified-core-passthrough-rest
    port: 8080
    description: REST adapter for Unified.to  API — passthrough. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/passthrough/{connection-id}/{path}
      name: passthrough-connection-id-path
      description: REST surface for passthrough-connection_id-path.
      operations:
      - method: DELETE
        name: removepassthrough
        description: Passthrough DELETE
        call: unified-core-passthrough.removepassthrough
        with:
          query: rest.query
          connection_id: rest.connection_id
          path: rest.path
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listpassthroughs
        description: Passthrough GET
        call: unified-core-passthrough.listpassthroughs
        with:
          query: rest.query
          connection_id: rest.connection_id
          path: rest.path
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchpassthrough
        description: Passthrough PUT
        call: unified-core-passthrough.patchpassthrough
        with:
          query: rest.query
          connection_id: rest.connection_id
          path: rest.path
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createpassthrough
        description: Passthrough POST
        call: unified-core-passthrough.createpassthrough
        with:
          query: rest.query
          connection_id: rest.connection_id
          path: rest.path
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatepassthrough
        description: Passthrough PUT
        call: unified-core-passthrough.updatepassthrough
        with:
          query: rest.query
          connection_id: rest.connection_id
          path: rest.path
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: unified-core-passthrough-mcp
    port: 9090
    transport: http
    description: MCP adapter for Unified.to  API — passthrough. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: passthrough-delete
      description: Passthrough DELETE
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: unified-core-passthrough.removepassthrough
      with:
        query: tools.query
        connection_id: tools.connection_id
        path: tools.path
      outputParameters:
      - type: object
        mapping: $.
    - name: passthrough-get
      description: Passthrough GET
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: unified-core-passthrough.listpassthroughs
      with:
        query: tools.query
        connection_id: tools.connection_id
        path: tools.path
      outputParameters:
      - type: object
        mapping: $.
    - name: passthrough-put
      description: Passthrough PUT
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: unified-core-passthrough.patchpassthrough
      with:
        query: tools.query
        connection_id: tools.connection_id
        path: tools.path
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: passthrough-post
      description: Passthrough POST
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: unified-core-passthrough.createpassthrough
      with:
        query: tools.query
        connection_id: tools.connection_id
        path: tools.path
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: passthrough-put-2
      description: Passthrough PUT
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: unified-core-passthrough.updatepassthrough
      with:
        query: tools.query
        connection_id: tools.connection_id
        path: tools.path
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.