Pipedream · Capability

Pipedream API - Proxy

Pipedream API - Proxy. 5 operations. Self-contained Naftiko capability covering one Pipedream business surface.

Pipedream API - Proxy is a Naftiko capability published by Pipedream, one of 16 capabilities the APIs.io network indexes for this provider. It bundles 5 operations across the GET, POST, PUT, DELETE, and PATCH methods rooted at /v1/connect/{…}/proxy/{…}.

The capability includes 1 read-only operation and 4 state-changing operations. Lead operation: Proxy GET Request. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Pipedream and Proxy.

Run with Naftiko PipedreamProxy

What You Can Do

GET
Retrieveproxy — Proxy GET Request
/v1/connect/{project_id}/proxy/{url_64}
POST
Postproxy — Proxy POST Request
/v1/connect/{project_id}/proxy/{url_64}
PUT
Putproxy — Proxy PUT Request
/v1/connect/{project_id}/proxy/{url_64}
DELETE
Deleteproxy — Proxy DELETE Request
/v1/connect/{project_id}/proxy/{url_64}
PATCH
Patchproxy — Proxy PATCH Request
/v1/connect/{project_id}/proxy/{url_64}

MCP Tools

retrieveproxy

Proxy GET Request

read-only idempotent
postproxy

Proxy POST Request

putproxy

Proxy PUT Request

idempotent
deleteproxy

Proxy DELETE Request

idempotent
patchproxy

Proxy PATCH Request

Capability Spec

pipedream-connect-proxy.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Pipedream API - Proxy
  description: Pipedream API - Proxy. 5 operations. Self-contained Naftiko capability covering one Pipedream business surface.
  tags:
  - Pipedream
  - Proxy
  created: '2026-05-22'
  modified: '2026-05-22'
binds:
- namespace: env
  keys:
    PIPEDREAM_ACCESS_TOKEN: PIPEDREAM_ACCESS_TOKEN
capability:
  consumes:
  - type: http
    namespace: pipedream-connect-proxy
    baseUri: https://api.pipedream.com
    description: Pipedream API - Proxy business capability. Self-contained, no shared references.
    resources:
    - name: v1-connect-project-id-proxy-url-64
      path: /v1/connect/{project_id}/proxy/{url_64}
      operations:
      - name: retrieveproxy
        method: GET
        description: Proxy GET Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: x-pd-environment
          in: header
          type: string
          required: true
      - name: postproxy
        method: POST
        description: Proxy POST Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: x-pd-environment
          in: header
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: putproxy
        method: PUT
        description: Proxy PUT Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: x-pd-environment
          in: header
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteproxy
        method: DELETE
        description: Proxy DELETE Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: x-pd-environment
          in: header
          type: string
          required: true
      - name: patchproxy
        method: PATCH
        description: Proxy PATCH Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: x-pd-environment
          in: header
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.PIPEDREAM_ACCESS_TOKEN}}'
  exposes:
  - type: rest
    namespace: pipedream-connect-proxy-rest
    port: 8080
    description: REST adapter for Pipedream API - Proxy. One resource per consumed operation.
    resources:
    - path: /v1/connect/{project_id}/proxy/{url_64}
      name: v1-connect-project-id-proxy-url-64
      description: REST surface for v1-connect-project-id-proxy-url-64.
      operations:
      - method: GET
        name: retrieveproxy
        description: Proxy GET Request
        call: pipedream-connect-proxy.retrieveproxy
        with:
          x-pd-environment: rest.x-pd-environment
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: postproxy
        description: Proxy POST Request
        call: pipedream-connect-proxy.postproxy
        with:
          x-pd-environment: rest.x-pd-environment
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: putproxy
        description: Proxy PUT Request
        call: pipedream-connect-proxy.putproxy
        with:
          x-pd-environment: rest.x-pd-environment
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteproxy
        description: Proxy DELETE Request
        call: pipedream-connect-proxy.deleteproxy
        with:
          x-pd-environment: rest.x-pd-environment
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchproxy
        description: Proxy PATCH Request
        call: pipedream-connect-proxy.patchproxy
        with:
          x-pd-environment: rest.x-pd-environment
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: pipedream-connect-proxy-mcp
    port: 9090
    transport: http
    description: MCP adapter for Pipedream API - Proxy. One tool per consumed operation.
    tools:
    - name: retrieveproxy
      description: Proxy GET Request
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pipedream-connect-proxy.retrieveproxy
      with:
        x-pd-environment: tools.x-pd-environment
      outputParameters:
      - type: object
        mapping: $.
    - name: postproxy
      description: Proxy POST Request
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: pipedream-connect-proxy.postproxy
      with:
        x-pd-environment: tools.x-pd-environment
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: putproxy
      description: Proxy PUT Request
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: pipedream-connect-proxy.putproxy
      with:
        x-pd-environment: tools.x-pd-environment
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: deleteproxy
      description: Proxy DELETE Request
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: pipedream-connect-proxy.deleteproxy
      with:
        x-pd-environment: tools.x-pd-environment
      outputParameters:
      - type: object
        mapping: $.
    - name: patchproxy
      description: Proxy PATCH Request
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: pipedream-connect-proxy.patchproxy
      with:
        x-pd-environment: tools.x-pd-environment
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.