Pipedrive · Capability

Pipedrive API v1 — ProjectBoards

Pipedrive API v1 — ProjectBoards. 2 operations. Lead operation: Get all project boards. Self-contained Naftiko capability covering one Pipedrive business surface.

Run with Naftiko PipedriveProjectBoards

What You Can Do

GET
Getprojectsboards — Get all project boards
/v1/projects/boards
GET
Getprojectsboard — Get details of a board
/v1/projects/boards/{id}

MCP Tools

get-all-project-boards

Get all project boards

read-only idempotent
get-details-board

Get details of a board

read-only idempotent

Capability Spec

v1-projectboards.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Pipedrive API v1 — ProjectBoards
  description: 'Pipedrive API v1 — ProjectBoards. 2 operations. Lead operation: Get all project boards. Self-contained Naftiko
    capability covering one Pipedrive business surface.'
  tags:
  - Pipedrive
  - ProjectBoards
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PIPEDRIVE_API_KEY: PIPEDRIVE_API_KEY
capability:
  consumes:
  - type: http
    namespace: v1-projectboards
    baseUri: https://api.pipedrive.com/v1
    description: Pipedrive API v1 — ProjectBoards business capability. Self-contained, no shared references.
    resources:
    - name: projects-boards
      path: /projects/boards
      operations:
      - name: getprojectsboards
        method: GET
        description: Get all project boards
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: projects-boards-id
      path: /projects/boards/{id}
      operations:
      - name: getprojectsboard
        method: GET
        description: Get details of a board
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: integer
          description: The ID of the project board
          required: true
    authentication:
      type: bearer
      token: '{{env.PIPEDRIVE_API_KEY}}'
  exposes:
  - type: rest
    namespace: v1-projectboards-rest
    port: 8080
    description: REST adapter for Pipedrive API v1 — ProjectBoards. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/projects/boards
      name: projects-boards
      description: REST surface for projects-boards.
      operations:
      - method: GET
        name: getprojectsboards
        description: Get all project boards
        call: v1-projectboards.getprojectsboards
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/boards/{id}
      name: projects-boards-id
      description: REST surface for projects-boards-id.
      operations:
      - method: GET
        name: getprojectsboard
        description: Get details of a board
        call: v1-projectboards.getprojectsboard
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: v1-projectboards-mcp
    port: 9090
    transport: http
    description: MCP adapter for Pipedrive API v1 — ProjectBoards. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-all-project-boards
      description: Get all project boards
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: v1-projectboards.getprojectsboards
      outputParameters:
      - type: object
        mapping: $.
    - name: get-details-board
      description: Get details of a board
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: v1-projectboards.getprojectsboard
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.