Pipedream · Capability

Pipedream API - Projects

Pipedream API - Projects. 7 operations. Self-contained Naftiko capability covering one Pipedream business surface.

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

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

Tagged areas include Pipedream and Projects.

Run with Naftiko PipedreamProjects

What You Can Do

GET
Listprojects — List Projects
/v1/connect/projects
POST
Createproject — Create Project
/v1/connect/projects
GET
Retrieveproject — Retrieve Project
/v1/connect/projects/{project_id}
DELETE
Deleteproject — Delete Project
/v1/connect/projects/{project_id}
PATCH
Updateproject — Update Project
/v1/connect/projects/{project_id}
POST
Updateprojectlogo — Update Project Logo
/v1/connect/projects/{project_id}/logo
GET
Retrieveprojectinfo — Get Project Info
/v1/connect/{project_id}/projects/info

MCP Tools

listprojects

List Projects

read-only idempotent
createproject

Create Project

retrieveproject

Retrieve Project

read-only idempotent
deleteproject

Delete Project

idempotent
updateproject

Update Project

updateprojectlogo

Update Project Logo

retrieveprojectinfo

Get Project Info

read-only idempotent

Capability Spec

pipedream-connect-projects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Pipedream API - Projects
  description: Pipedream API - Projects. 7 operations. Self-contained Naftiko capability covering one Pipedream business surface.
  tags:
  - Pipedream
  - Projects
  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-projects
    baseUri: https://api.pipedream.com
    description: Pipedream API - Projects business capability. Self-contained, no shared references.
    resources:
    - name: v1-connect-projects
      path: /v1/connect/projects
      operations:
      - name: listprojects
        method: GET
        description: List Projects
        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: q
          in: query
          type: string
          required: false
      - name: createproject
        method: POST
        description: Create Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-connect-projects-project-id
      path: /v1/connect/projects/{project_id}
      operations:
      - name: retrieveproject
        method: GET
        description: Retrieve Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deleteproject
        method: DELETE
        description: Delete Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateproject
        method: PATCH
        description: Update Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-connect-projects-project-id-logo
      path: /v1/connect/projects/{project_id}/logo
      operations:
      - name: updateprojectlogo
        method: POST
        description: Update Project Logo
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-connect-project-id-projects-info
      path: /v1/connect/{project_id}/projects/info
      operations:
      - name: retrieveprojectinfo
        method: GET
        description: Get Project Info
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: x-pd-environment
          in: header
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.PIPEDREAM_ACCESS_TOKEN}}'
  exposes:
  - type: rest
    namespace: pipedream-connect-projects-rest
    port: 8080
    description: REST adapter for Pipedream API - Projects. One resource per consumed operation.
    resources:
    - path: /v1/connect/projects
      name: v1-connect-projects
      description: REST surface for v1-connect-projects.
      operations:
      - method: GET
        name: listprojects
        description: List Projects
        call: pipedream-connect-projects.listprojects
        with:
          after: rest.after
          before: rest.before
          limit: rest.limit
          q: rest.q
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createproject
        description: Create Project
        call: pipedream-connect-projects.createproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/connect/projects/{project_id}
      name: v1-connect-projects-project-id
      description: REST surface for v1-connect-projects-project-id.
      operations:
      - method: GET
        name: retrieveproject
        description: Retrieve Project
        call: pipedream-connect-projects.retrieveproject
        with: {}
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteproject
        description: Delete Project
        call: pipedream-connect-projects.deleteproject
        with: {}
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateproject
        description: Update Project
        call: pipedream-connect-projects.updateproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/connect/projects/{project_id}/logo
      name: v1-connect-projects-project-id-logo
      description: REST surface for v1-connect-projects-project-id-logo.
      operations:
      - method: POST
        name: updateprojectlogo
        description: Update Project Logo
        call: pipedream-connect-projects.updateprojectlogo
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/connect/{project_id}/projects/info
      name: v1-connect-project-id-projects-info
      description: REST surface for v1-connect-project-id-projects-info.
      operations:
      - method: GET
        name: retrieveprojectinfo
        description: Get Project Info
        call: pipedream-connect-projects.retrieveprojectinfo
        with:
          x-pd-environment: rest.x-pd-environment
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: pipedream-connect-projects-mcp
    port: 9090
    transport: http
    description: MCP adapter for Pipedream API - Projects. One tool per consumed operation.
    tools:
    - name: listprojects
      description: List Projects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pipedream-connect-projects.listprojects
      with:
        after: tools.after
        before: tools.before
        limit: tools.limit
        q: tools.q
      outputParameters:
      - type: object
        mapping: $.
    - name: createproject
      description: Create Project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: pipedream-connect-projects.createproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieveproject
      description: Retrieve Project
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pipedream-connect-projects.retrieveproject
      with: {}
      outputParameters:
      - type: object
        mapping: $.
    - name: deleteproject
      description: Delete Project
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: pipedream-connect-projects.deleteproject
      with: {}
      outputParameters:
      - type: object
        mapping: $.
    - name: updateproject
      description: Update Project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: pipedream-connect-projects.updateproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: updateprojectlogo
      description: Update Project Logo
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: pipedream-connect-projects.updateprojectlogo
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieveprojectinfo
      description: Get Project Info
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pipedream-connect-projects.retrieveprojectinfo
      with:
        x-pd-environment: tools.x-pd-environment
      outputParameters:
      - type: object
        mapping: $.