Pipedream · Capability

Pipedream API - Actions

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

Pipedream API - Actions 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 POST and GET methods rooted at /v1/connect/{…}/actions.

The capability includes 2 read-only operations and 3 state-changing operations. Lead operation: List Actions. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Pipedream and Actions.

Run with Naftiko PipedreamActions

What You Can Do

GET
Listactions — List Actions
/v1/connect/{project_id}/actions
GET
Retrieveaction — Retrieve Action
/v1/connect/{project_id}/actions/{component_id}
POST
Configureactionprop — Configure Action Prop
/v1/connect/{project_id}/actions/configure
POST
Reloadactionprops — Reload Action Props
/v1/connect/{project_id}/actions/props
POST
Runaction — Run Action
/v1/connect/{project_id}/actions/run

MCP Tools

listactions

List Actions

read-only idempotent
retrieveaction

Retrieve Action

read-only idempotent
configureactionprop

Configure Action Prop

reloadactionprops

Reload Action Props

runaction

Run Action

Capability Spec

pipedream-connect-actions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Pipedream API - Actions
  description: Pipedream API - Actions. 5 operations. Self-contained Naftiko capability covering one Pipedream business surface.
  tags:
  - Pipedream
  - Actions
  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-actions
    baseUri: https://api.pipedream.com
    description: Pipedream API - Actions business capability. Self-contained, no shared references.
    resources:
    - name: v1-connect-project-id-actions
      path: /v1/connect/{project_id}/actions
      operations:
      - name: listactions
        method: GET
        description: List Actions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: after
          in: query
          type: string
          required: false
        - name: before
          in: query
          type: string
          required: false
        - name: limit
          in: query
          type: integer
          required: false
        - name: x-pd-environment
          in: header
          type: string
          required: true
        - name: q
          in: query
          type: string
          required: false
        - name: app
          in: query
          type: string
          required: false
        - name: registry
          in: query
          type: string
          required: false
    - name: v1-connect-project-id-actions-component-id
      path: /v1/connect/{project_id}/actions/{component_id}
      operations:
      - name: retrieveaction
        method: GET
        description: Retrieve Action
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: x-pd-environment
          in: header
          type: string
          required: true
        - name: component_id
          in: path
          type: string
          required: true
        - name: version
          in: query
          type: string
          required: false
    - name: v1-connect-project-id-actions-configure
      path: /v1/connect/{project_id}/actions/configure
      operations:
      - name: configureactionprop
        method: POST
        description: Configure Action Prop
        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: v1-connect-project-id-actions-props
      path: /v1/connect/{project_id}/actions/props
      operations:
      - name: reloadactionprops
        method: POST
        description: Reload Action Props
        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: v1-connect-project-id-actions-run
      path: /v1/connect/{project_id}/actions/run
      operations:
      - name: runaction
        method: POST
        description: Run Action
        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-actions-rest
    port: 8080
    description: REST adapter for Pipedream API - Actions. One resource per consumed operation.
    resources:
    - path: /v1/connect/{project_id}/actions
      name: v1-connect-project-id-actions
      description: REST surface for v1-connect-project-id-actions.
      operations:
      - method: GET
        name: listactions
        description: List Actions
        call: pipedream-connect-actions.listactions
        with:
          after: rest.after
          before: rest.before
          limit: rest.limit
          x-pd-environment: rest.x-pd-environment
          q: rest.q
          app: rest.app
          registry: rest.registry
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/connect/{project_id}/actions/{component_id}
      name: v1-connect-project-id-actions-component-id
      description: REST surface for v1-connect-project-id-actions-component-id.
      operations:
      - method: GET
        name: retrieveaction
        description: Retrieve Action
        call: pipedream-connect-actions.retrieveaction
        with:
          x-pd-environment: rest.x-pd-environment
          component_id: rest.component_id
          version: rest.version
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/connect/{project_id}/actions/configure
      name: v1-connect-project-id-actions-configure
      description: REST surface for v1-connect-project-id-actions-configure.
      operations:
      - method: POST
        name: configureactionprop
        description: Configure Action Prop
        call: pipedream-connect-actions.configureactionprop
        with:
          x-pd-environment: rest.x-pd-environment
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/connect/{project_id}/actions/props
      name: v1-connect-project-id-actions-props
      description: REST surface for v1-connect-project-id-actions-props.
      operations:
      - method: POST
        name: reloadactionprops
        description: Reload Action Props
        call: pipedream-connect-actions.reloadactionprops
        with:
          x-pd-environment: rest.x-pd-environment
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/connect/{project_id}/actions/run
      name: v1-connect-project-id-actions-run
      description: REST surface for v1-connect-project-id-actions-run.
      operations:
      - method: POST
        name: runaction
        description: Run Action
        call: pipedream-connect-actions.runaction
        with:
          x-pd-environment: rest.x-pd-environment
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: pipedream-connect-actions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Pipedream API - Actions. One tool per consumed operation.
    tools:
    - name: listactions
      description: List Actions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pipedream-connect-actions.listactions
      with:
        after: tools.after
        before: tools.before
        limit: tools.limit
        x-pd-environment: tools.x-pd-environment
        q: tools.q
        app: tools.app
        registry: tools.registry
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieveaction
      description: Retrieve Action
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pipedream-connect-actions.retrieveaction
      with:
        x-pd-environment: tools.x-pd-environment
        component_id: tools.component_id
        version: tools.version
      outputParameters:
      - type: object
        mapping: $.
    - name: configureactionprop
      description: Configure Action Prop
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: pipedream-connect-actions.configureactionprop
      with:
        x-pd-environment: tools.x-pd-environment
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: reloadactionprops
      description: Reload Action Props
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: pipedream-connect-actions.reloadactionprops
      with:
        x-pd-environment: tools.x-pd-environment
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: runaction
      description: Run Action
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: pipedream-connect-actions.runaction
      with:
        x-pd-environment: tools.x-pd-environment
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.