ckalima/pipedrive-mcp-server

ckalima/pipedrive-mcp-server

от ckalima
MCP-сервер для интеграции Pipedrive CRM с AI-ассистентами. Позволяет запрашивать, создавать и обновлять сделки, контакты, email и другие данные прямо из диалога. Полезен менеджерам по продажам и ра...

Pipedrive MCP Server

npm version CI tests license: MIT

An MCP (Model Context Protocol) server for Pipedrive CRM integration with Claude Code and Claude Desktop. Query, create, and update CRM data directly from your AI assistant.

Why this server

  • API v2-first. Every entity uses Pipedrive's v2 REST API where it exists; v1 is used only for the capabilities that have no v2 equivalent (notes, mail, users, and leads CRUD). See API Versioning.
  • Contract-tested against the real OpenAPI spec. Request params, request bodies, and response shapes are checked against the vendored Pipedrive OpenAPI v2 definition (docs/api/openapi-v2.yaml) in tests/contract/, so the v2 tools can't silently drift from the documented API.
  • Live-smoke verified. The tool surface is broadly exercised against a real Pipedrive account (scripts/smoke-coverage.ts), with only API-unseedable surfaces (e.g. mail threads, project templates) left to manual checks. Coverage includes plan-gated endpoints such as Growth+ deal installments (scripts/smoke-installments.ts). Key write smokes (e.g. the task is_done flag) assert the field value actually changed on the wire, not just a 200.
  • Server-enforced capability modes. PIPEDRIVE_MODE picks a safety tier — read-only, safe-write (the default: reads + non-destructive writes), or full — and out-of-mode tools are both hidden from tools/list and refused if called directly. Deletes, conversions, and other irreversible writes (🔒 in the tool table) require full, so the server is read-and-create only out of the box. Every tool also carries MCP annotations (readOnlyHint/destructiveHint/idempotentHint) so policy-aware clients can tell reads from writes from deletes. See Capability modes.
  • MIT licensed, published with npm build provenance.
Инструменты были проиндексированы:
pipedrive_add_deal_discountвнешний мир

Добавить дополнительную скидку к сделке.

Параметры
  • amountnumberобязательный

    Discount amount, must be positive (required)

  • descriptionstringобязательный

    Discount description (required)

  • idnumberобязательный

    The deal ID

  • typeenumобязательный

    Whether amount is a percentage or fixed amount (required)

pipedrive_add_deal_followerвнешний мир

Добавить наблюдателя к сделке.

Параметры
  • idnumberобязательный

    The deal ID

  • user_idnumberобязательный

    The ID of the user to add as a follower (required)

pipedrive_add_deal_installmentвнешний мир

Добавляет взнос (запись графика платежей) в сделку. Требуется план Growth+; сделка должна содержать хотя бы один одноразовый продукт и ни одного продукта с периодической оплатой.

Параметры
  • amountnumberобязательный

    Installment amount, must be positive (required)

  • billing_datestringобязательный

    Billing date in YYYY-MM-DD format (required)

  • descriptionstringобязательный

    Installment description (required)

  • idnumberобязательный

    The deal ID

pipedrive_add_deal_productвнешний мир

Прикрепляет один товар как позицию к сделке.

Параметры
  • billing_frequencyenum

    Billing frequency for recurring products

  • billing_frequency_cyclesnumber | null

    Number of billing cycles (null = unlimited)

  • billing_start_datestring | null

    Billing start date (YYYY-MM-DD, null to clear)

  • commentsstring

    Free-text comments for this line item

  • discountnumber

    Discount applied to the line item (default 0)

  • discount_typeenum

    Whether discount is a percentage or fixed amount (default percentage)

  • idnumberобязательный

    The deal ID

  • is_enabledboolean

    Whether the product is enabled on the deal (default true)

  • item_pricenumberобязательный

    Price of one unit (required)

  • product_idnumberобязательный

    The product ID to attach (required)

  • product_variation_idnumber | null

    Product variation ID (null to clear)

  • quantitynumberобязательный

    Quantity of the product (required)

  • taxnumber

    Tax percentage (default 0)

  • tax_methodenum

    How tax is applied

pipedrive_add_organization_followerвнешний мир

Добавить подписчика в организацию.

Параметры
  • idnumberобязательный

    The organization ID

  • user_idnumberобязательный

    The ID of the user to add as a follower (required)

pipedrive_add_person_followerвнешний мир

Добавить подписчика человеку.

Параметры
  • idnumberобязательный

    The person ID

  • user_idnumberобязательный

    The ID of the user to add as a follower (required)

pipedrive_add_product_followerвнешний мир

Добавить подписчика к продукту.

Параметры
  • idnumberобязательный

    The product ID

  • user_idnumberобязательный

    The ID of the user to add as a follower (required)

pipedrive_add_product_variationвнешний мир

Добавить вариацию к товару.

Параметры
  • idnumberобязательный

    The product ID

  • namestringобязательный

    Product variation name (required, max 255 chars)

  • pricesobject[]

    Array of price objects per currency

pipedrive_archive_projectидемпотентныйвнешний мир

Архивирует проект, устанавливая его статус как archived. (Требует надстройку Projects; Projects API находится в публичной бета-версии.)

Параметры
  • idnumberобязательный

    Project ID to archive

pipedrive_bulk_add_deal_productsвнешний мир

Массово добавляйте до 100 товарных позиций к сделке одним запросом.

Параметры
  • dataobject[]обязательный

    Array of 1-100 line-item products to add

  • idnumberобязательный

    The deal ID

pipedrive_create_activityвнешний мир

Создаёт новую активность в Pipedrive. Тема и тип обязательны.

Параметры
  • attendeesobject[]

    External attendees (email addresses)

  • busyboolean

    Show as busy in calendar

  • deal_idnumber

    Link to deal ID

  • doneboolean

    Mark as completed

  • due_datestring

    Due date (YYYY-MM-DD)

  • due_timestring

    Due time (HH:MM)

  • durationstring

    Duration (HH:MM)

  • lead_idstring

    Link to lead ID (UUID format)

  • locationobject

    Activity location (structured object)

  • notestring

    Activity notes (HTML supported)

  • org_idnumber

    Link to organization ID

  • owner_idnumber

    Owner user ID

  • participantsobject[]

    Activity participants (person IDs)

  • person_idnumber

    Link to person ID

  • prioritynumber

    Activity priority (integer)

  • project_idnumber

    Link to project ID

  • public_descriptionstring

    Public description for guests

  • subjectstringобязательный

    Activity subject (required)

  • typestringобязательный

    Activity type: call, meeting, task, deadline, email, lunch (required)

pipedrive_create_boardвнешний мир

Создать новую доску проекта. name обязателен. (Дополнение Projects; API Projects в открытой бета-версии.)

Параметры
  • namestringобязательный

    Board name (required, must not be empty)

  • order_nrnumber

    Board order number (integer >= 1)

pipedrive_create_dealвнешний мир

Создать новую сделку в Pipedrive. Обязательно только название; все остальные поля необязательны.

Параметры
  • currencystring

    3-letter currency code (e.g., USD, EUR)

  • custom_fieldsobject

    Custom field values as object with field keys

  • expected_close_datestring

    Expected close date (YYYY-MM-DD)

  • label_idsnumber[]

    Label IDs to attach to deal

  • org_idnumber

    ID of organization to link to deal

  • owner_idnumber

    Owner user ID

  • person_idnumber

    ID of person to link to deal

  • pipeline_idnumber

    Pipeline ID

  • probabilitynumber

    Success probability (0-100)

  • stage_idnumber

    Stage ID

  • statusenum

    Deal status

  • titlestringобязательный

    Deal title (required)

  • valuenumber

    Deal monetary value

  • visible_toenum

    Visibility: 1=Owner, 3=Group, 5=Subgroups, 7=Company

pipedrive_create_deal_fieldвнешний мир

Создаёт пользовательское поле сделки. Параметры field_name и field_type обязательны. Для типов enum/set требуется options. В ответе data.field_code — это 40-символьный хэш, который необходимо сохранить для последующего обновления или удаления поля.

Параметры
  • descriptionstring | null

    Field description (null to clear)

  • field_namestringобязательный

    Field name (required, 1-255 chars)

  • field_typeenumобязательный

    Field type. Use 'enum' (single choice) or 'set' (multiple choice) for option fields.

  • important_fieldsobject

    Important-field highlighting: enabled, stage_ids (always references DEAL stages, even on person/org fields).

  • optionsobject[]

    Field options (required for enum and set field types)

  • required_fieldsobject

    Required-field config: enabled, stage_ids (deal stages), statuses (per-pipeline won/lost map).

  • ui_visibilityobject

    UI visibility: add_visible_flag, details_visible_flag, projects_detail_visible_flag, show_in_pipelines{show_in_all, pipeline_ids}.

pipedrive_create_leadвнешний мир

Создаёт новый лид в Pipedrive. Заголовок обязателен; необходима ссылка на хотя бы один из person_id или organization_id.

Параметры
  • expected_close_datestring

    Expected close date (YYYY-MM-DD)

  • label_idsstring[]

    Lead label UUIDs

  • organization_idnumber

    Link to organization ID

  • owner_idnumber

    Owner user ID

  • person_idnumber

    Link to person ID

  • titlestringобязательный

    Lead title (required)

  • valueobject

    Monetary value of the lead

  • visible_toenum

    Visibility: 1=Owner, 3=Group, 5=Subgroups, 7=Company

pipedrive_create_noteвнешний мир

Создаёт новую заметку в Pipedrive. Содержание обязательно. Привязывает к сделке, контакту, организации или лиду.

Параметры
  • contentstringобязательный

    Note content (required, HTML supported)

  • deal_idnumber

    Link to deal ID

  • lead_idstring

    Link to lead ID (UUID format)

  • org_idnumber

    Link to organization ID

  • person_idnumber

    Link to person ID

  • pinned_to_deal_flagboolean

    Pin note to deal

  • pinned_to_organization_flagboolean

    Pin note to organization

  • pinned_to_person_flagboolean

    Pin note to person

pipedrive_create_organizationвнешний мир

Создаёт новую организацию в Pipedrive. Требуется только название.

Параметры
  • addressobject

    Organization address as a structured object (v2). Provide 'value' for the full address.

  • add_timestring

    Creation time (RFC3339 format) - backdate the organization

  • custom_fieldsobject

    Custom field values as object with field keys

  • label_idsnumber[]

    Label IDs to attach to organization

  • namestringобязательный

    Organization name (required)

  • owner_idnumber

    Owner user ID

  • visible_toenum

    Visibility: 1=Owner, 3=Group, 5=Subgroups, 7=Company

pipedrive_create_organization_fieldвнешний мир

Создать пользовательское поле организации. field_name и field_type обязательны. Для типов enum/set требуется options. В ответе data.field_code: 40-символьный хеш, который нужно сохранить для последующих обновлений.

Параметры
  • field_namestringобязательный

    Field name (required, 1-255 chars)

  • field_typeenumобязательный

    Field type. Use 'enum' (single choice) or 'set' (multiple choice) for option fields.

  • important_fieldsobject

    Important-field highlighting: enabled, stage_ids (always references DEAL stages, even on person/org fields).

  • optionsobject[]

    Field options (required for enum and set field types)

  • required_fieldsobject

    Required-field config: enabled (person/org fields support only this flag).

  • ui_visibilityobject

    UI visibility: add_visible_flag, details_visible_flag, show_in_add_deal_dialog{show, order}, show_in_add_person_dialog{show, order}.

pipedrive_create_personвнешний мир

Создаёт нового человека (контакт) в Pipedrive. Требуется только имя.

Параметры
  • add_timestring

    Creation time (RFC3339 format) - backdate the person

  • custom_fieldsobject

    Custom field values as object with field keys

  • emailsobject[]

    Email addresses (array of objects, e.g. [{ value, primary, label }])

  • label_idsnumber[]

    Label IDs to attach to person

  • marketing_statusenum

    Marketing status

  • namestringобязательный

    Person name (required)

  • org_idnumber

    Organization ID to link to

  • owner_idnumber

    Owner user ID

  • phonesobject[]

    Phone numbers (array of objects, e.g. [{ value, primary, label }])

  • visible_toenum

    Visibility: 1=Owner, 3=Group, 5=Subgroups, 7=Company

pipedrive_create_person_fieldвнешний мир

Создаёт пользовательское поле для контакта. Поле field_name и поле field_type обязательны. Для типов enum/set требуется options. Поле data.field_code в ответе содержит 40-символьный хеш, который нужно сохранить для последующих обновлений.

Параметры
  • field_namestringобязательный

    Field name (required, 1-255 chars)

  • field_typeenumобязательный

    Field type. Use 'enum' (single choice) or 'set' (multiple choice) for option fields.

  • important_fieldsobject

    Important-field highlighting: enabled, stage_ids (always references DEAL stages, even on person/org fields).

  • optionsobject[]

    Field options (required for enum and set field types)

  • required_fieldsobject

    Required-field config: enabled (person/org fields support only this flag).

  • ui_visibilityobject

    UI visibility: add_visible_flag, details_visible_flag, show_in_add_deal_dialog{show, order}.

pipedrive_create_phaseвнешний мир

Создать новую фазу проекта. name и board_id обязательны. (Дополнение Projects; API Projects в публичной бета-версии.)

Параметры
  • board_idnumberобязательный

    ID of the board this phase belongs to (required)

  • namestringобязательный

    Phase name (required, must not be empty)

  • order_nrnumber

    Phase order number (integer >= 1)

pipedrive_create_pipelineвнешний мир

Создаёт новую воронку продаж. Требуется только название. Устанавливает is_deal_probability_enabled, чтобы включить взвешенную вероятность сделки для этой воронки.

Параметры
  • is_deal_probability_enabledboolean

    Whether deal probability is enabled for this pipeline (default false)

  • namestringобязательный

    The name of the pipeline (required)

pipedrive_create_productвнешний мир

Создаёт новый продукт в Pipedrive. Требуется только название.

Параметры
  • billing_frequencyenum

    Billing frequency (default one-time)

  • billing_frequency_cyclesnumber | null

    Number of billing cycles (max 208, null = unlimited)

  • categorynumber

    Product category ID

  • codestring

    Product code

  • custom_fieldsobject

    Custom field values as object with field keys

  • descriptionstring

    Product description

  • is_linkableboolean

    Whether the product can be linked to deals (default true)

  • namestringобязательный

    Product name (required)

  • owner_idnumber

    Owner user ID

  • pricesobject[]

    Array of price objects per currency

  • taxnumber

    Tax percentage (default 0)

  • unitstring

    Unit of measurement

  • visible_toenum

    Visibility: 1=Owner, 3=Group, 5=Subgroups, 7=Company

pipedrive_create_product_fieldвнешний мир

Создаёт пользовательское поле товара. field_name и field_type обязательны. Для типов enum/set требуется options. Поля товаров используют более простую модель: без description, important_fields или required_fields. В ответе data.field_code — 40-символьный хэш, который нужно сохранить для последующих обновлений.

Параметры
  • field_namestringобязательный

    Field name (required, 1-255 chars)

  • field_typeenumобязательный

    Field type. Use 'enum' (single choice) or 'set' (multiple choice) for option fields.

  • optionsobject[]

    Field options (required for enum and set field types)

  • ui_visibilityobject

    UI visibility (product fields use a simpler model): add_visible_flag, details_visible_flag.

pipedrive_create_projectвнешний мир

Создаёт новый проект в Pipedrive. Требует title, board_id и phase_id. (Требуется дополнение Projects; API Projects в публичной бета-версии.)

Параметры
  • board_idnumberобязательный

    Board ID the project belongs to (required)

  • deal_idsnumber[]

    Deal IDs linked to the project

  • descriptionstring

    Project description

  • end_datestring

    Project end date (YYYY-MM-DD)

  • label_idsnumber[]

    Label IDs to attach to the project

  • org_idsnumber[]

    Organization IDs linked to the project

  • owner_idnumber

    Owner user ID

  • person_idsnumber[]

    Person IDs linked to the project

  • phase_idnumberобязательный

    Phase ID within the board (required)

  • start_datestring

    Project start date (YYYY-MM-DD)

  • statusstring

    Project status

  • titlestringобязательный

    Project title (required)

pipedrive_create_stageвнешний мир

Создаёт новый этап в пайплайне. name и pipeline_id обязательны. Используйте is_deal_rot_enabled и days_to_rotten для настройки гниения сделок.

Параметры
  • days_to_rottennumber | null

    Days until a deal not updated in this stage becomes rotten (applies only when is_deal_rot_enabled is set; null to clear)

  • deal_probabilitynumber

    The success probability percentage of deals in this stage (0-100)

  • is_deal_rot_enabledboolean

    Whether deals in this stage can become rotten

  • namestringобязательный

    The name of the stage (required)

  • pipeline_idnumberобязательный

    The ID of the pipeline to add the stage to (required)

pipedrive_create_taskвнешний мир

Создаёт новую задачу в проекте. title и project_id обязательны. Используйте булевы is_done/is_milestone (те же имена полей, что и в ответе GET); задача-веха должна иметь due_date. (Projects add-on; Projects API в открытой бета-версии.)

Параметры
  • assignee_idnumber | null

    Assignee user ID (null to unassign)

  • assignee_idsnumber[]

    Array of assignee user IDs (max 10)

  • descriptionstring | null

    Task description (null to clear)

  • due_datestring | null

    Task due date (YYYY-MM-DD, null to clear)

  • is_doneboolean

    Mark as done (true/false)

  • is_milestoneboolean

    Mark as milestone (true/false); a milestone task must have a due_date

  • parent_task_idnumber | null

    ID of the parent task (null for root-level)

  • prioritynumber | null

    Task priority (integer >= 0, or null to unset)

  • project_idnumberобязательный

    ID of the project this task belongs to (required)

  • start_datestring | null

    Task start date (YYYY-MM-DD, null to clear)

  • titlestringобязательный

    Task title (required, 1-255 chars)

pipedrive_get_activityтолько чтениеидемпотентныйвнешний мир

Получает подробную информацию о конкретной активности по ID.

Параметры
  • idnumberобязательный

    The activity ID

  • include_fieldsstring

    Include additional data in response

pipedrive_get_boardтолько чтениеидемпотентныйвнешний мир

Получить подробную информацию о конкретной доске проекта по идентификатору. (Надстройка Projects; API Projects в статусе публичной бета-версии.)

Параметры
  • idnumberобязательный

    The board ID

pipedrive_get_current_userтолько чтениеидемпотентныйвнешний мир

Определяет аккаунт Pipedrive, к которому подключен этот сервер: возвращает подключенную компанию (название, идентификатор и домен) вместе с данными пользователя, владеющего ключом API. Используйте его, чтобы подтвердить, из какой компании поступают данные, или получить свой идентификатор пользователя.

Параметры

Без параметров.

pipedrive_get_dealтолько чтениеидемпотентныйвнешний мир

Получить подробную информацию о конкретной сделке по ID, включая все стандартные и пользовательские поля.

Параметры
  • custom_fieldsstring

    Include custom fields in response (comma-separated field keys or 'all')

  • idnumberобязательный

    The deal ID

  • include_fieldsstring

    Comma-separated extra fields (v2 enum, e.g. next_activity_id, last_activity_id, products_count, files_count, notes_count, followers_count)

pipedrive_get_deal_conversion_statusтолько чтениеидемпотентныйвнешний мир

Получить статус задачи преобразования сделки в лид. Контракт статусов: 'completed' (терминальный, содержит lead_id), 'failed'/'rejected' (терминальный, прекратить опрос, лид не создан), 'not_started'/'running' (в процессе, повторить опрос). Только 'completed' содержит lead_id, а статус преобразования удаляется через несколько дней, поэтому 404, возвращённый после предыдущего валидного статуса, означает, что статус был удалён (терминальный сигнал прекращения опроса, а не временная ошибка). Используйте ограниченный бюджет опроса (например, до ~6 попыток с короткой задержкой), а не бесконечный цикл.

Параметры
  • conversion_idstringобязательный

    Conversion job UUID returned by the convert call

  • idnumberобязательный

    The deal ID that was converted

pipedrive_get_deal_emailsтолько чтениеидемпотентныйвнешний мир

Получает email-сообщения, связанные со сделкой (по всей компании, почта всех пользователей). Возвращает метаданные для писем из почтового ящика любого пользователя, которые связаны с этой сделкой. Примечание: чтобы получить полное тело письма, используйте pipedrive_get_mail_message, но только для писем из ВАШЕГО почтового ящика.

Параметры
  • idnumberобязательный

    Deal ID

  • limitnumber

    Number of items (1-500)

  • startnumber

    Pagination offset (0-based)

pipedrive_get_deal_followers_changelogтолько чтениеидемпотентныйвнешний мир

Получить журнал изменений подписчиков для сделки.

Параметры
  • cursorstring

    Cursor for pagination

  • idnumberобязательный

    The deal ID

  • limitnumber

    Number of items (1-100)

pipedrive_get_fieldтолько чтениеидемпотентныйвнешний мир

Получить детали конкретного поля по его ключу. Полезно, чтобы узнать, что означает 40-символьный хеш-ключ поля.

Параметры
  • entity_typeenumобязательный

    Entity type the field belongs to

  • keystringобязательный

    Field key (40-char hash for custom fields)

pipedrive_get_leadтолько чтениеидемпотентныйвнешний мир

Получает подробную информацию о конкретном лиде по UUID.

Параметры
  • idstringобязательный

    Lead UUID

pipedrive_get_lead_conversion_statusтолько чтениеидемпотентныйвнешний мир

Получить статус асинхронной конвертации лида в сделку по ID конвертации (Pipedrive v2 GET /leads/{id}/convert/status/{conversion_id}).

Параметры
  • conversion_idstringобязательный

    Conversion job UUID returned by the convert call

  • idstringобязательный

    Lead UUID

pipedrive_get_mail_messageтолько чтениеидемпотентныйвнешний мир

Получить полное сообщение электронной почты с телом письма. Доступ зависит от настроек видимости - сообщения, привязанные к сделкам или контактам, к которым у вас есть доступ, должны работать, даже если их отправили другие пользователи.

Параметры
  • idnumberобязательный

    Mail message ID

  • include_bodyboolean

    Include full email body (default: false)

pipedrive_get_mail_threadтолько чтениеидемпотентныйвнешний мир

Получает цепочку писем с сообщениями. Доступ зависит от настроек видимости: должны работать цепочки, видимые в сделках/контактах, к которым у вас есть доступ. Возвращает 404, если цепочка вам недоступна.

Параметры
  • idnumberобязательный

    Mail thread ID

pipedrive_get_noteтолько чтениеидемпотентныйвнешний мир

Получает подробную информацию о конкретной заметке по ID.

Параметры
  • idnumberобязательный

    The note ID

pipedrive_get_organizationтолько чтениеидемпотентныйвнешний мир

Получает подробную информацию о конкретной организации по её ID.

Параметры
  • custom_fieldsstring

    Include custom fields in response (comma-separated field keys or 'all')

  • idnumberобязательный

    The organization ID

  • include_fieldsstring

    Include additional data in response

pipedrive_get_organization_followers_changelogтолько чтениеидемпотентныйвнешний мир

Получает журнал изменений подписчиков для организации.

Параметры
  • cursorstring

    Cursor for pagination

  • idnumberобязательный

    The organization ID

  • limitnumber

    Number of items (1-100)

pipedrive_get_personтолько чтениеидемпотентныйвнешний мир

Получает подробную информацию о конкретном человеке по его ID.

Параметры
  • custom_fieldsstring

    Include custom fields in response (comma-separated field keys or 'all')

  • idnumberобязательный

    The person ID

  • include_fieldsstring

    Comma-separated extra fields (v2 enum, e.g. next_activity_id, open_deals_count, won_deals_count, notes_count, followers_count)

pipedrive_get_person_emailsтолько чтениеидемпотентныйвнешний мир

Получает email-сообщения, связанные с человеком (по всей компании, все email пользователей). Возвращает метаданные для писем из любого почтового ящика пользователя, которые привязаны к этому человеку. Примечание: чтобы получить полное тело сообщения, используйте pipedrive_get_mail_message, но только для писем из ВАШЕГО почтового ящика.

Параметры
  • idnumberобязательный

    Person ID

  • limitnumber

    Number of items (1-500)

  • startnumber

    Pagination offset (0-based)

pipedrive_get_person_followers_changelogтолько чтениеидемпотентныйвнешний мир

Получить журнал изменений подписчиков для человека.

Параметры
  • cursorstring

    Cursor for pagination

  • idnumberобязательный

    The person ID

  • limitnumber

    Number of items (1-100)

pipedrive_get_person_pictureтолько чтениеидемпотентныйвнешний мир

Получить изображение для человека (только чтение; возвращает метаданные изображения и URL изображений разных размеров). Возвращает ошибку, если у человека нет изображения.

Параметры
  • idnumberобязательный

    The person ID

pipedrive_get_phaseтолько чтениеидемпотентныйвнешний мир

Получить подробную информацию о конкретной фазе проекта по идентификатору. (Projects add-on; Projects API в публичной бета-версии.)

Параметры
  • idnumberобязательный

    The phase ID

pipedrive_get_productтолько чтениеидемпотентныйвнешний мир

Получает подробную информацию о конкретном товаре по ID.

Параметры
  • idnumberобязательный

    The product ID

pipedrive_get_product_followers_changelogтолько чтениеидемпотентныйвнешний мир

Получить changelog для подписчиков продукта.

Параметры
  • cursorstring

    Cursor for pagination

  • idnumberобязательный

    The product ID

  • limitnumber

    Number of items (1-100)

pipedrive_get_product_imageтолько чтениеидемпотентныйвнешний мир

Получает изображение продукта (возвращает одно изображение с публичной ссылкой, действительной в течение 7 дней).

Параметры
  • idnumberобязательный

    The product ID

pipedrive_get_projectтолько чтениеидемпотентныйвнешний мир

Получить подробную информацию о конкретном проекте по ID. (Требуется дополнение Projects; API Projects находится в открытой бета-версии.)

Параметры
  • idnumberобязательный

    The project ID

pipedrive_get_project_changelogтолько чтениеидемпотентныйвнешний мир

Получает журнал изменений для проекта: что изменилось, когда и кем. Возвращает записи с постраничной навигацией, содержащие actor_user_id, new_values и old_values. (Дополнение Projects; API Projects в статусе публичной бета-версии.)

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • idnumberобязательный

    The project ID

  • limitnumber

    Number of items to return (1-100, default 50)

pipedrive_get_project_permitted_usersтолько чтениеидемпотентныйвнешний мир

Получает список идентификаторов пользователей, имеющих разрешение на доступ к проекту. Возвращает массив целочисленных идентификаторов пользователей. (Projects add-on; Projects API в публичной бета-версии.)

Параметры
  • idnumberобязательный

    The project ID

pipedrive_get_project_templateтолько чтениеидемпотентныйвнешний мир

Получить подробную информацию о конкретном шаблоне проекта по ID.

Параметры
  • idnumberобязательный

    The project template ID

pipedrive_get_stageтолько чтениеидемпотентныйвнешний мир

Получить детали конкретного этапа по ID.

Параметры
  • idnumberобязательный

    Stage ID

pipedrive_get_taskтолько чтениеидемпотентныйвнешний мир

Получает подробную информацию о конкретной задаче по её ID. (Дополнение Projects; API Projects в публичной бета-версии.)

Параметры
  • idnumberобязательный

    The task ID

pipedrive_get_userтолько чтениеидемпотентныйвнешний мир

Получить данные конкретного пользователя по ID.

Параметры
  • idnumberобязательный

    User ID

pipedrive_list_activitiesтолько чтениеидемпотентныйвнешний мир

Выводит список активностей из Pipedrive с возможностью фильтрации по владельцу, сделке, контакту, организации, типу или статусу выполнения.

Параметры
  • cursorstring

    Cursor for pagination

  • deal_idnumber

    Filter by deal ID

  • doneboolean

    Filter by completion (true=done, false=pending)

  • filter_idnumber

    Filter by saved filter ID

  • idsstring

    Comma-separated activity IDs to fetch (max 100)

  • include_fieldsstring

    Include additional data in response

  • lead_idstring

    Filter by lead ID (UUID format)

  • limitnumber

    Number of items (1-100)

  • org_idnumber

    Filter by organization ID

  • owner_idnumber

    Filter by owner user ID

  • person_idnumber

    Filter by person ID

  • sort_byenum

    Field to sort by

  • sort_directionenum

    Sort direction

  • updated_sincestring

    Filter activities updated after this time (RFC3339 format)

  • updated_untilstring

    Filter activities updated before this time (RFC3339 format)

pipedrive_list_archived_dealsтолько чтениеидемпотентныйвнешний мир

Выводит архивные сделки с той же фильтрацией, что и список активных сделок (владелец, контакт, компания, воронка, этап, статус). Возвращает результаты с постраничной разбивкой.

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • custom_fieldsstring

    Include custom fields in response (comma-separated field keys or 'all')

  • filter_idnumber

    Filter by saved filter ID

  • idsstring

    Comma-separated deal IDs to fetch (max 100)

  • include_fieldsstring

    Comma-separated extra fields (v2 enum, e.g. next_activity_id, last_activity_id, products_count, files_count, notes_count, followers_count)

  • limitnumber

    Number of items to return (1-100, default 50)

  • org_idnumber

    Filter by linked organization ID

  • owner_idnumber

    Filter by owner user ID

  • person_idnumber

    Filter by linked person ID

  • pipeline_idnumber

    Filter by pipeline ID

  • sort_byenum

    Field to sort by

  • sort_directionenum

    Sort direction (default: desc)

  • stage_idnumber

    Filter by stage ID

  • statusenum

    Filter by deal status (omit to return all non-deleted deals)

  • updated_sincestring

    Filter deals updated after this time (RFC3339 format, e.g. 2024-01-01T00:00:00Z)

  • updated_untilstring

    Filter deals updated before this time (RFC3339 format)

pipedrive_list_archived_leadsтолько чтениеидемпотентныйвнешний мир

Выводит список архивных лидов из Pipedrive с возможностью фильтрации по владельцу, контакту или организации.

Параметры
  • filter_idnumber

    Filter by saved filter ID

  • limitnumber

    Number of items (1-500, default 50)

  • organization_idnumber

    Filter by linked organization ID

  • owner_idnumber

    Filter by owner user ID

  • person_idnumber

    Filter by linked person ID

  • sortstring

    Sort field and direction (e.g. 'id ASC')

  • startnumber

    Pagination offset (0-based)

pipedrive_list_archived_projectsтолько чтениеидемпотентныйвнешний мир

Перечислить архивные проекты из Pipedrive с возможностью фильтрации по фильтру, этапу или статусу. (Дополнение Projects; API Projects в открытой бета-версии.)

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • filter_idnumber

    Filter by saved filter ID

  • limitnumber

    Number of items to return (1-100, default 50)

  • phase_idnumber

    Filter by phase ID

  • statusstring

    Filter by project status (e.g. open, completed, canceled)

pipedrive_list_boardsтолько чтениеидемпотентныйвнешний мир

Список всех досок проекта. Возвращает полный список (без пагинации — boards endpoint возвращает все записи сразу). (Projects add-on; Projects API в публичной бета-версии.)

Параметры

Без параметров.

pipedrive_list_deal_discountsтолько чтениеидемпотентныйвнешний мир

Перечисляет все дополнительные скидки, применённые к сделке.

Параметры
  • idnumberобязательный

    The deal ID

pipedrive_list_deal_fieldsтолько чтениеидемпотентныйвнешний мир

Вывести все определения полей сделки, включая пользовательские поля. Необходимо для понимания структуры данных сделки.

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • limitnumber

    Number of items (1-100)

pipedrive_list_deal_followersтолько чтениеидемпотентныйвнешний мир

Вывести список всех подписчиков для сделки.

Параметры
  • cursorstring

    Cursor for pagination

  • idnumberобязательный

    The deal ID

  • limitnumber

    Number of items (1-100)

pipedrive_list_deal_installmentsтолько чтениеидемпотентныйвнешний мир

Перечисляет транши для одной или нескольких сделок. Требуются deal_ids. Требуется тарифный план Growth+.

Параметры
  • cursorstring

    Cursor for pagination

  • deal_idsnumber[]обязательный

    Deal IDs to fetch installments for (1-100, required)

  • limitnumber

    Number of items (1-100)

  • sort_byenum

    Field to sort by

  • sort_directionenum

    Sort direction

pipedrive_list_deal_productsтолько чтениеидемпотентныйвнешний мир

Выводит список товарных позиций, привязанных к сделке. Возвращает результаты с постраничной разбивкой.

Параметры
  • cursorstring

    Cursor for pagination

  • idnumberобязательный

    The deal ID

  • limitnumber

    Number of items (1-100)

  • sort_byenum

    Field to sort by

  • sort_directionenum

    Sort direction

pipedrive_list_dealsтолько чтениеидемпотентныйвнешний мир

Выводит список сделок из Pipedrive с возможностью фильтрации по владельцу, контакту, организации, воронке, этапу или статусу. Возвращает постраничные результаты.

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • custom_fieldsstring

    Include custom fields in response (comma-separated field keys or 'all')

  • filter_idnumber

    Filter by saved filter ID

  • idsstring

    Comma-separated deal IDs to fetch (max 100)

  • include_fieldsstring

    Comma-separated extra fields (v2 enum, e.g. next_activity_id, last_activity_id, products_count, files_count, notes_count, followers_count)

  • limitnumber

    Number of items to return (1-100, default 50)

  • org_idnumber

    Filter by linked organization ID

  • owner_idnumber

    Filter by owner user ID

  • person_idnumber

    Filter by linked person ID

  • pipeline_idnumber

    Filter by pipeline ID

  • sort_byenum

    Field to sort by

  • sort_directionenum

    Sort direction (default: desc)

  • stage_idnumber

    Filter by stage ID

  • statusenum

    Filter by deal status (omit to return all non-deleted deals)

  • updated_sincestring

    Filter deals updated after this time (RFC3339 format, e.g. 2024-01-01T00:00:00Z)

  • updated_untilstring

    Filter deals updated before this time (RFC3339 format)

pipedrive_list_leadsтолько чтениеидемпотентныйвнешний мир

Вывести активные (неархивные) лиды из Pipedrive с возможностью фильтрации по владельцу, контакту или организации.

Параметры
  • filter_idnumber

    Filter by saved filter ID

  • limitnumber

    Number of items (1-500, default 50)

  • organization_idnumber

    Filter by linked organization ID

  • owner_idnumber

    Filter by owner user ID

  • person_idnumber

    Filter by linked person ID

  • sortstring

    Sort field and direction (e.g. 'id ASC')

  • startnumber

    Pagination offset (0-based)

pipedrive_list_mail_threadsтолько чтениеидемпотентныйвнешний мир

Получает список почтовых цепочек ТОЛЬКО из вашего почтового ящика (аутентифицированный пользователь). Чужие цепочки недоступны. Используйте параметр folder, чтобы отфильтровать по папкам: inbox (входящие), drafts (черновики), sent (отправленные) или archive (архив).

Параметры
  • folderenum

    Mail folder (default: inbox)

  • limitnumber

    Number of items

  • startnumber

    Pagination offset

pipedrive_list_notesтолько чтениеидемпотентныйвнешний мир

Выводит список заметок из Pipedrive с опциональной фильтрацией по сделке, контакту, организации или лиду.

Параметры
  • deal_idnumber

    Filter by deal ID

  • lead_idstring

    Filter by lead ID (UUID format)

  • limitnumber

    Number of items (1-500)

  • org_idnumber

    Filter by organization ID

  • person_idnumber

    Filter by person ID

  • pinned_to_deal_flagboolean

    Filter by pinned to deal

  • pinned_to_organization_flagboolean

    Filter by pinned to organization

  • pinned_to_person_flagboolean

    Filter by pinned to person

  • sortenum

    Field to sort by

  • sort_directionenum

    Sort direction

  • startnumber

    Pagination offset (0-based)

pipedrive_list_organization_fieldsтолько чтениеидемпотентныйвнешний мир

Выведи все определения полей организации, включая пользовательские. Используй это для сопоставления 40-символьных ключей полей с человекочитаемыми названиями.

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • limitnumber

    Number of items (1-100)

pipedrive_list_organization_followersтолько чтениеидемпотентныйвнешний мир

Перечислить всех подписчиков организации.

Параметры
  • cursorstring

    Cursor for pagination

  • idnumberобязательный

    The organization ID

  • limitnumber

    Number of items (1-100)

pipedrive_list_organizationsтолько чтениеидемпотентныйвнешний мир

Выводит список организаций из Pipedrive с возможностью фильтрации по владельцу или первой букве названия.

Параметры
  • cursorstring

    Cursor for pagination

  • custom_fieldsstring

    Include custom fields in response (comma-separated field keys or 'all')

  • filter_idnumber

    Filter by saved filter ID

  • idsstring

    Comma-separated organization IDs to fetch (max 100)

  • include_fieldsstring

    Include additional data in response

  • limitnumber

    Number of items (1-100)

  • owner_idnumber

    Filter by owner user ID

  • sort_byenum

    Field to sort by

  • sort_directionenum

    Sort direction

  • updated_sincestring

    Filter organizations updated after this time (RFC3339 format)

  • updated_untilstring

    Filter organizations updated before this time (RFC3339 format)

pipedrive_list_person_fieldsтолько чтениеидемпотентныйвнешний мир

Вывести список всех определений полей человека, включая пользовательские поля. Используйте, чтобы понять структуру данных контактов.

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • limitnumber

    Number of items (1-100)

pipedrive_list_person_followersтолько чтениеидемпотентныйвнешний мир

Вывести всех подписчиков человека.

Параметры
  • cursorstring

    Cursor for pagination

  • idnumberобязательный

    The person ID

  • limitnumber

    Number of items (1-100)

pipedrive_list_personsтолько чтениеидемпотентныйвнешний мир

Выводит список лиц (контактов) из Pipedrive с возможностью фильтрации по владельцу, организации или первой букве имени.

Параметры
  • cursorstring

    Cursor for pagination

  • custom_fieldsstring

    Include custom fields in response (comma-separated field keys or 'all')

  • filter_idnumber

    Filter by saved filter ID

  • idsstring

    Comma-separated person IDs to fetch (max 100)

  • include_fieldsstring

    Comma-separated extra fields (v2 enum, e.g. next_activity_id, open_deals_count, won_deals_count, notes_count, followers_count)

  • limitnumber

    Number of items (1-100)

  • org_idnumber

    Filter by organization ID

  • owner_idnumber

    Filter by owner user ID

  • sort_byenum

    Field to sort by

  • sort_directionenum

    Sort direction

  • updated_sincestring

    Filter persons updated after this time (RFC3339 format)

  • updated_untilstring

    Filter persons updated before this time (RFC3339 format)

pipedrive_list_phasesтолько чтениеидемпотентныйвнешний мир

Выводит все фазы доски проекта. board_id обязателен. Возвращает полный список (без постраничного вывода: endpoint phases возвращает все записи для доски сразу). (Дополнение Projects; Projects API в публичной бета-версии.)

Параметры
  • board_idnumberобязательный

    ID of the board to list phases for (required)

pipedrive_list_pipelinesтолько чтениеидемпотентныйвнешний мир

Список воронок продаж в Pipedrive с курсорной пагинацией. Воронки содержат этапы, через которые проходят сделки.

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • limitnumber

    Number of items to return (1-100, default 50)

pipedrive_list_product_fieldsтолько чтениеидемпотентныйвнешний мир

Выведи список всех определений полей продукта, включая пользовательские поля.

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • include_fieldsenum

    Additional data namespaces to include (ui_visibility)

  • limitnumber

    Number of items (1-100)

pipedrive_list_product_followersтолько чтениеидемпотентныйвнешний мир

Вывести всех подписчиков для продукта.

Параметры
  • cursorstring

    Cursor for pagination

  • idnumberобязательный

    The product ID

  • limitnumber

    Number of items (1-100)

pipedrive_list_productsтолько чтениеидемпотентныйвнешний мир

Получить список товаров из Pipedrive с необязательной фильтрацией по владельцу, ID или фильтру.

Параметры
  • cursorstring

    Cursor for pagination

  • custom_fieldsstring

    Include custom fields in response (comma-separated field keys, max 15)

  • filter_idnumber

    Filter by saved filter ID

  • idsstring

    Comma-separated product IDs to fetch (max 100)

  • limitnumber

    Number of items (1-100)

  • owner_idnumber

    Filter by owner user ID

  • sort_byenum

    Field to sort by

  • sort_directionenum

    Sort direction

  • updated_sincestring

    Filter products updated after this time (RFC3339 format)

pipedrive_list_product_variationsтолько чтениеидемпотентныйвнешний мир

Перечисляет все вариации для продукта.

Параметры
  • cursorstring

    Cursor for pagination

  • idnumberобязательный

    The product ID

  • limitnumber

    Number of items (1-100)

pipedrive_list_project_fieldsтолько чтениеидемпотентныйвнешний мир

Вывести список всех определений полей проекта, включая пользовательские поля. (Расширение Projects; Projects API в публичной бета-версии.)

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • limitnumber

    Number of items (1-100)

pipedrive_list_projectsтолько чтениеидемпотентныйвнешний мир

Перечисляет проекты из Pipedrive с опциональной фильтрацией по доске, этапу или статусу. Возвращает постраничные результаты. (Требуется дополнение Projects; Projects API в публичной бете.)

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • filter_idnumber

    Filter by saved filter ID

  • limitnumber

    Number of items to return (1-100, default 50)

  • phase_idnumber

    Filter by phase ID

  • statusstring

    Filter by project status (e.g. open, completed, canceled, deleted)

pipedrive_list_project_tasksтолько чтениеидемпотентныйвнешний мир

Вывести список задач для проекта, ID которого у вас уже есть - передавайте только id (идентификатор проекта). Для более широких запросов задач используйте pipedrive_list_tasks. (Дополнение Projects; API Projects в публичной бета-версии.)

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • idnumberобязательный

    Project ID

  • limitnumber

    Number of items (1-100, default 50)

pipedrive_list_project_templatesтолько чтениеидемпотентныйвнешний мир

Выводит список всех шаблонов проектов, доступных в Pipedrive. Возвращает результаты с постраничной разбивкой.

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • limitnumber

    Number of items to return (1-100, default 50)

pipedrive_list_stagesтолько чтениеидемпотентныйвнешний мир

Выводит список этапов с курсорной пагинацией, опционально отфильтрованных по воронке. Этапы: шаги в процессе продаж.

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • limitnumber

    Number of items to return (1-100, default 50)

  • pipeline_idnumber

    Filter by pipeline ID (returns all stages if not specified)

pipedrive_list_tasksтолько чтениеидемпотентныйвнешний мир

Общий запрос задач по всем проектам с необязательными фильтрами project_id, assignee_id, done/milestone и parent. Используйте для всего, что выходит за рамки полного списка задач одного проекта. (Projects add-on; Projects API в открытой бета-версии.)

Параметры
  • assignee_idnumber

    Filter by assignee user ID

  • cursorstring

    Cursor for pagination (from previous response)

  • is_doneboolean

    Filter by done status

  • is_milestoneboolean

    Filter by milestone status

  • limitnumber

    Number of items (1-100, default 50)

  • parent_task_idstring

    Filter by parent task ID. Use the literal string "null" to return only root-level tasks.

  • project_idnumber

    Filter by project ID

pipedrive_list_usersтолько чтениеидемпотентныйвнешний мир

Выводит список всех пользователей в аккаунте Pipedrive. Полезно для поиска идентификаторов владельцев при создании или фильтрации записей.

Параметры

Без параметров.

pipedrive_search_dealsтолько чтениеидемпотентныйвнешний мир

Ищет сделки по тексту в названии. По умолчанию поддерживает нечеткое сравнение.

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • exact_matchboolean

    Use exact match instead of fuzzy

  • fieldsstring

    Comma-separated fields to search (title, notes, custom_fields). Defaults to all.

  • limitnumber

    Number of results (1-100)

  • org_idnumber

    Filter by linked organization

  • person_idnumber

    Filter by linked person

  • statusenum

    Filter by status (omit to return all non-deleted deals)

  • termstringобязательный

    Search term

pipedrive_search_leadsтолько чтениеидемпотентныйвнешний мир

Искать лиды в Pipedrive по заголовку или связанным контактам.

Параметры
  • cursorstring

    Cursor for pagination

  • exact_matchboolean

    Use exact match instead of fuzzy search

  • fieldsstring

    Comma-separated fields to search (title, notes, custom_fields). Defaults to all.

  • include_fieldsenum

    Optional extra field: only 'lead.was_seen'

  • limitnumber

    Number of results (1-500, default 50)

  • organization_idnumber

    Filter by linked organization ID

  • person_idnumber

    Filter by linked person ID

  • termstringобязательный

    Search term (required)

pipedrive_search_organizationsтолько чтениеидемпотентныйвнешний мир

Поиск организаций по названию или адресу.

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • exact_matchboolean

    Use exact match

  • fieldsstring

    Comma-separated fields to search (name, address, notes, custom_fields). Defaults to all.

  • limitnumber

    Number of results (1-100)

  • termstringобязательный

    Search term

pipedrive_search_personsтолько чтениеидемпотентныйвнешний мир

Искать людей по имени, email или номеру телефона.

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • exact_matchboolean

    Use exact match

  • fieldsstring

    Comma-separated fields to search (name, email, phone, notes, custom_fields). Defaults to all.

  • limitnumber

    Number of results (1-100)

  • org_idnumber

    Filter by organization

  • termstringобязательный

    Search term

pipedrive_search_productsтолько чтениеидемпотентныйвнешний мир

Ищет продукты по названию, коду или пользовательским полям.

Параметры
  • cursorstring

    Cursor for pagination (from previous response)

  • exact_matchboolean

    Use exact match

  • fieldsstring

    Comma-separated fields to search: code, custom_fields, name. Defaults to all.

  • include_fieldsenum

    Extra fields to include (product.price)

  • limitnumber

    Number of results (1-100)

  • termstringобязательный

    Search term

pipedrive_search_projectsтолько чтениеидемпотентныйвнешний мир

Поиск проектов в Pipedrive по названию. (Требуется дополнение Projects; API Projects находится в публичной бете.)

Параметры
  • cursorstring

    Cursor for pagination

  • exact_matchboolean

    Use exact match instead of fuzzy search

  • limitnumber

    Number of results (1-100, default 50)

  • termstringобязательный

    Search term (required)

pipedrive_update_activityидемпотентныйвнешний мир

Обновляет существующее действие в Pipedrive. Используйте это, чтобы отмечать действия как выполненные.

Параметры
  • attendeesobject[]

    New attendees

  • busyboolean

    Show as busy

  • deal_idnumber

    New deal ID

  • doneboolean

    Mark as completed/pending

  • due_datestring

    New due date (YYYY-MM-DD)

  • due_timestring

    New due time (HH:MM)

  • durationstring

    New duration (HH:MM)

  • idnumberобязательный

    Activity ID to update

  • lead_idstring

    New lead ID (UUID format)

  • locationobject

    New location (structured object)

  • notestring

    New notes

  • org_idnumber

    New organization ID

  • owner_idnumber

    New owner

  • participantsobject[]

    New participants

  • person_idnumber

    New person ID

  • prioritynumber

    New priority (integer)

  • project_idnumber

    New project ID

  • subjectstring

    New subject

  • typestring

    New type

pipedrive_update_boardидемпотентныйвнешний мир

Обновить существующую доску проекта. Обязателен только id; все остальные поля опциональны. (Projects add-on; Projects API в публичной бета-версии.)

Параметры
  • idnumberобязательный

    The board ID to update

  • namestring

    Board name

  • order_nrnumber

    Board order number (integer >= 1)

pipedrive_update_dealидемпотентныйвнешний мир

Обнови существующую сделку в Pipedrive. Укажи ID сделки и любые поля для обновления.

Параметры
  • currencystring

    New currency code

  • custom_fieldsobject

    Custom field values as object with field keys

  • expected_close_datestring

    New expected close date (YYYY-MM-DD)

  • idnumberобязательный

    Deal ID to update

  • label_idsnumber[]

    Label IDs to set on deal

  • lost_reasonstring

    Lost reason (when status is 'lost')

  • lost_timestring

    Lost time (when status is 'lost')

  • org_idnumber

    New linked organization ID

  • owner_idnumber

    New owner user ID

  • person_idnumber

    New linked person ID

  • pipeline_idnumber

    New pipeline ID

  • probabilitynumber

    New success probability (0-100)

  • stage_idnumber

    New stage ID

  • statusenum

    New deal status

  • titlestring

    New deal title

  • valuenumber

    New deal value

  • visible_toenum

    Visibility: 1=Owner, 3=Group, 5=Subgroups, 7=Company

  • won_timestring

    Won time (when status is 'won')

pipedrive_update_deal_discountидемпотентныйвнешний мир

Обновить дополнительную скидку на сделку. Все поля, кроме идентификаторов, необязательны.

Параметры
  • amountnumber

    Discount amount, must be positive

  • descriptionstring

    Discount description

  • discount_idstringобязательный

    The discount UUID

  • idnumberобязательный

    The deal ID

  • typeenum

    Whether amount is a percentage or fixed amount

pipedrive_update_deal_fieldидемпотентныйвнешний мир

Обновить пользовательское поле сделки по field_code. field_type и field_code нельзя изменить.

Параметры
  • descriptionstring | null

    Field description (null to clear)

  • field_codestringобязательный

    The field_code (40-char hash for custom fields) from the field create/list response. NOT the human field name.

  • field_namestring

    New field name (1-255 chars)

  • important_fieldsobject

    Important-field highlighting: enabled, stage_ids (always references DEAL stages, even on person/org fields).

  • required_fieldsobject

    Required-field config: enabled, stage_ids (deal stages), statuses (per-pipeline won/lost map).

  • ui_visibilityobject

    UI visibility: add_visible_flag, details_visible_flag, projects_detail_visible_flag, show_in_pipelines{show_in_all, pipeline_ids}.

pipedrive_update_deal_field_optionsидемпотентныйвнешний мир

Массовое обновление меток вариантов поля перечисления/набора сделки. Атомарно: весь запрос завершается ошибкой, если какой-либо ID варианта не существует.

Параметры
  • field_codestringобязательный

    The field_code (40-char hash for custom fields) from the field create/list response. NOT the human field name.

  • optionsobject[]обязательный

    Options to update (at least one). Atomic: the whole request fails if any option ID does not exist.

pipedrive_update_deal_installmentидемпотентныйвнешний мир

Обновляет платеж по сделке. Требуется план Growth+; все поля тела запроса необязательны.

Параметры
  • amountnumber

    Installment amount, must be positive

  • billing_datestring

    Billing date in YYYY-MM-DD format

  • descriptionstring

    Installment description

  • idnumberобязательный

    The deal ID

  • installment_idnumberобязательный

    The installment ID

pipedrive_update_deal_productидемпотентныйвнешний мир

Обновить позицию продукта, прикреплённую к сделке. Все поля в теле запроса необязательны.

Параметры
  • billing_frequencyenum

    Billing frequency for recurring products

  • billing_frequency_cyclesnumber | null

    Number of billing cycles (null = unlimited)

  • billing_start_datestring | null

    Billing start date (YYYY-MM-DD, null to clear)

  • commentsstring

    Free-text comments for this line item

  • discountnumber

    Discount applied to the line item

  • discount_typeenum

    Whether discount is a percentage or fixed amount

  • idnumberобязательный

    The deal ID

  • is_enabledboolean

    Whether the product is enabled on the deal

  • item_pricenumber

    Price of one unit

  • product_attachment_idnumberобязательный

    The product-attachment ID (the line item's own ID on the deal)

  • product_idnumber

    The product ID to attach

  • product_variation_idnumber | null

    Product variation ID (null to clear)

  • quantitynumber

    Quantity of the product

  • taxnumber

    Tax percentage

  • tax_methodenum

    How tax is applied

pipedrive_update_leadидемпотентныйвнешний мир

Обновить существующий лид в Pipedrive.

Параметры
  • expected_close_datestring

    New expected close date (YYYY-MM-DD)

  • idstringобязательный

    Lead UUID to update

  • is_archivedboolean

    Archive or unarchive the lead

  • label_idsstring[]

    New lead label UUIDs

  • organization_idnumber

    New linked organization ID

  • owner_idnumber

    New owner user ID

  • person_idnumber

    New linked person ID

  • titlestring

    New lead title

  • valueobject

    New monetary value

  • visible_toenum

    New visibility: 1=Owner, 3=Group, 5=Subgroups, 7=Company

pipedrive_update_noteидемпотентныйвнешний мир

Обновляет существующую заметку в Pipedrive.

Параметры
  • contentstring

    New note content (HTML supported)

  • deal_idnumber

    New linked deal ID

  • idnumberобязательный

    Note ID to update

  • lead_idstring

    New linked lead ID (UUID format)

  • org_idnumber

    New linked organization ID

  • person_idnumber

    New linked person ID

  • pinned_to_deal_flagboolean

    Pin note to deal

  • pinned_to_organization_flagboolean

    Pin note to organization

  • pinned_to_person_flagboolean

    Pin note to person

pipedrive_update_organizationидемпотентныйвнешний мир

Обновить существующую организацию в Pipedrive.

Параметры
  • addressobject

    New organization address as a structured object (v2). Provide 'value' for the full address.

  • custom_fieldsobject

    Custom field values as object with field keys

  • idnumberобязательный

    Organization ID to update

  • label_idsnumber[]

    Label IDs to set on organization

  • namestring

    New name

  • owner_idnumber

    New owner user ID

  • visible_toenum

    New visibility: 1=Owner, 3=Group, 5=Subgroups, 7=Company

pipedrive_update_organization_fieldидемпотентныйвнешний мир

Обновить пользовательское поле организации по field_code. field_type и field_code нельзя изменить.

Параметры
  • field_codestringобязательный

    The field_code (40-char hash for custom fields) from the field create/list response. NOT the human field name.

  • field_namestring

    New field name (1-255 chars)

  • important_fieldsobject

    Important-field highlighting: enabled, stage_ids (always references DEAL stages, even on person/org fields).

  • required_fieldsobject

    Required-field config: enabled (person/org fields support only this flag).

  • ui_visibilityobject

    UI visibility: add_visible_flag, details_visible_flag, show_in_add_deal_dialog{show, order}, show_in_add_person_dialog{show, order}.

pipedrive_update_organization_field_optionsидемпотентныйвнешний мир

Массовое обновление меток опций поля перечисления/набора организации. Атомарно: весь запрос завершается ошибкой, если хотя бы один ID опции не существует.

Параметры
  • field_codestringобязательный

    The field_code (40-char hash for custom fields) from the field create/list response. NOT the human field name.

  • optionsobject[]обязательный

    Options to update (at least one). Atomic: the whole request fails if any option ID does not exist.

pipedrive_update_personидемпотентныйвнешний мир

Обновить существующее лицо в Pipedrive.

Параметры
  • custom_fieldsobject

    Custom field values as object with field keys

  • emailsobject[]

    New email addresses (array of objects)

  • idnumberобязательный

    Person ID to update

  • label_idsnumber[]

    Label IDs to set on person

  • marketing_statusenum

    New marketing status

  • namestring

    New name

  • org_idnumber

    New organization ID

  • owner_idnumber

    New owner user ID

  • phonesobject[]

    New phone numbers (array of objects)

  • visible_toenum

    New visibility: 1=Owner, 3=Group, 5=Subgroups, 7=Company

pipedrive_update_person_fieldидемпотентныйвнешний мир

Обновляет пользовательское поле человека по field_code. field_type и field_code изменить нельзя.

Параметры
  • field_codestringобязательный

    The field_code (40-char hash for custom fields) from the field create/list response. NOT the human field name.

  • field_namestring

    New field name (1-255 chars)

  • important_fieldsobject

    Important-field highlighting: enabled, stage_ids (always references DEAL stages, even on person/org fields).

  • required_fieldsobject

    Required-field config: enabled (person/org fields support only this flag).

  • ui_visibilityobject

    UI visibility: add_visible_flag, details_visible_flag, show_in_add_deal_dialog{show, order}.

pipedrive_update_person_field_optionsидемпотентныйвнешний мир

Массовое обновление меток опций перечисляемого/наборного поля персоны. Атомарно: весь запрос завершается ошибкой, если не существует хотя бы один ID опции.

Параметры
  • field_codestringобязательный

    The field_code (40-char hash for custom fields) from the field create/list response. NOT the human field name.

  • optionsobject[]обязательный

    Options to update (at least one). Atomic: the whole request fails if any option ID does not exist.

pipedrive_update_phaseидемпотентныйвнешний мир

Обновить существующую фазу проекта. Обязателен только id; все остальные поля необязательны. Установите board_id, чтобы переместить эту фазу на другую доску. (Projects add-on; Projects API в публичной бета-версии.)

Параметры
  • board_idnumber

    ID of the board (set to move this phase to a different board)

  • idnumberобязательный

    The phase ID to update

  • namestring

    Phase name

  • order_nrnumber

    Phase order number (integer >= 1)

pipedrive_update_pipelineидемпотентныйвнешний мир

Обновляет существующий pipeline. Укажите идентификатор pipeline и любые поля для изменения.

Параметры
  • idnumberобязательный

    The ID of the pipeline to update

  • is_deal_probability_enabledboolean

    Whether deal probability is enabled for this pipeline

  • namestring

    The new name of the pipeline

pipedrive_update_productидемпотентныйвнешний мир

Обновляет существующий продукт в Pipedrive.

Параметры
  • billing_frequencyenum

    Billing frequency

  • billing_frequency_cyclesnumber | null

    Number of billing cycles (max 208, null = unlimited)

  • categorynumber

    New product category ID

  • codestring

    New product code

  • custom_fieldsobject

    Custom field values as object with field keys

  • descriptionstring

    New product description

  • idnumberобязательный

    Product ID to update

  • is_linkableboolean

    Whether the product can be linked to deals

  • namestring

    New product name

  • owner_idnumber

    New owner user ID

  • pricesobject[]

    Array of price objects per currency

  • taxnumber

    New tax percentage

  • unitstring

    New unit of measurement

  • visible_toenum

    New visibility: 1=Owner, 3=Group, 5=Subgroups, 7=Company

pipedrive_update_product_fieldидемпотентныйвнешний мир

Обновляет пользовательское поле продукта по field_code. Можно изменить только field_name и ui_visibility (у полей продукта нет description/important_fields/required_fields).

Параметры
  • field_codestringобязательный

    The field_code (40-char hash for custom fields) from the field create/list response. NOT the human field name.

  • field_namestring

    New field name (1-255 chars)

  • ui_visibilityobject

    UI visibility (product fields use a simpler model): add_visible_flag, details_visible_flag.

pipedrive_update_product_field_optionsидемпотентныйвнешний мир

Массовое обновление меток опций поля перечисления/набора продукта. Атомарно: весь запрос завершается ошибкой, если хотя бы один идентификатор опции не существует.

Параметры
  • field_codestringобязательный

    The field_code (40-char hash for custom fields) from the field create/list response. NOT the human field name.

  • optionsobject[]обязательный

    Options to update (at least one). Atomic: the whole request fails if any option ID does not exist.

pipedrive_update_product_imageидемпотентныйвнешний мир

Обновляет (заменяет) изображение товара. Передайте изображение через file_path ИЛИ base64_data (требуется ровно один из них). Поддерживаются форматы png, jpeg, gif и webp. Важно: file_path читается СЕРВЕРНЫМ процессом через файловую систему и по умолчанию отключен; оператор должен задать PIPEDRIVE_IMAGE_BASE_DIR, и путь должен разрешаться внутри этой директории; в противном случае используйте base64_data — он безопасен при передаче.

Параметры
  • base64_datastring

    Base64-encoded image bytes (transport-safe). Mutually exclusive with file_path.

  • file_namestringобязательный

    Original filename including extension (e.g. product.png)

  • file_pathstring

    Path the server reads via fs.readFile, confined to PIPEDRIVE_IMAGE_BASE_DIR (filesystem reads are disabled unless that variable is set). Mutually exclusive with base64_data.

  • idnumberобязательный

    The product ID

  • mime_typeenum

    MIME type. Inferred from file_name if omitted.

pipedrive_update_product_variationидемпотентныйвнешний мир

Обновить существующую вариацию товара.

Параметры
  • idnumberобязательный

    The product ID

  • namestring

    Product variation name (max 255 chars)

  • pricesobject[]

    Array of price objects per currency

  • product_variation_idnumberобязательный

    The product variation ID

pipedrive_update_projectидемпотентныйвнешний мир

Обновить существующий проект в Pipedrive. (Требуется дополнение Projects; Projects API в публичной бете.)

Параметры
  • board_idnumber

    New board ID the project belongs to

  • deal_idsnumber[]

    New deal IDs linked to the project

  • descriptionstring

    New project description

  • end_datestring

    New project end date (YYYY-MM-DD)

  • idnumberобязательный

    Project ID to update

  • label_idsnumber[]

    New label IDs to attach to the project

  • org_idsnumber[]

    New organization IDs linked to the project

  • owner_idnumber

    New owner user ID

  • person_idsnumber[]

    New person IDs linked to the project

  • phase_idnumber

    New phase ID within the board

  • start_datestring

    New project start date (YYYY-MM-DD)

  • statusstring

    New project status

  • titlestring

    New project title

pipedrive_update_stageидемпотентныйвнешний мир

Обновляет существующий этап. Укажите идентификатор этапа и любые поля для изменения. Установите pipeline_id, чтобы переместить этап в другой конвейер.

Параметры
  • days_to_rottennumber | null

    Days until a deal not updated in this stage becomes rotten (applies only when is_deal_rot_enabled is set; null to clear)

  • deal_probabilitynumber

    The success probability percentage of deals in this stage (0-100)

  • idnumberобязательный

    The ID of the stage to update

  • is_deal_rot_enabledboolean

    Whether deals in this stage can become rotten

  • namestring

    The new name of the stage

  • pipeline_idnumber

    Move the stage to this pipeline ID

pipedrive_update_taskидемпотентныйвнешний мир

Обновить существующую задачу. Обязательно только id; все остальные поля опциональны. Используйте булевы is_done/is_milestone (те же имена полей, что и в ответе GET); веха-задача должна иметь due_date. (Дополнение Projects; API Projects в стадии публичной беты.)

Параметры
  • assignee_idnumber | null

    Assignee user ID (null to unassign)

  • assignee_idsnumber[]

    Array of assignee user IDs (max 10)

  • descriptionstring | null

    Task description (null to clear)

  • due_datestring | null

    Task due date (YYYY-MM-DD, null to clear)

  • idnumberобязательный

    The task ID to update

  • is_doneboolean

    Mark as done (true/false)

  • is_milestoneboolean

    Mark as milestone (true/false); a milestone task must have a due_date

  • parent_task_idnumber | null

    ID of the parent task (null to make root-level)

  • prioritynumber | null

    Task priority (integer >= 0, or null to unset)

  • project_idnumber

    ID of the project this task belongs to

  • start_datestring | null

    Task start date (YYYY-MM-DD, null to clear)

  • titlestring

    Task title (1-255 chars)

pipedrive_upload_product_imageвнешний мир

Загружает изображение товара. Изображение передаётся через file_path ИЛИ base64_data (требуется ровно одно). Поддерживает png, jpeg, gif и webp. Примечание: file_path читается процессом СЕРВЕРА через файловую систему и отключён по умолчанию; оператор должен задать PIPEDRIVE_IMAGE_BASE_DIR, и путь должен находиться внутри него; в противном случае используйте base64_data, который безопасен при передаче.

Параметры
  • base64_datastring

    Base64-encoded image bytes (transport-safe). Mutually exclusive with file_path.

  • file_namestringобязательный

    Original filename including extension (e.g. product.png)

  • file_pathstring

    Path the server reads via fs.readFile, confined to PIPEDRIVE_IMAGE_BASE_DIR (filesystem reads are disabled unless that variable is set). Mutually exclusive with base64_data.

  • idnumberобязательный

    The product ID

  • mime_typeenum

    MIME type. Inferred from file_name if omitted.

Похожие MCP-сервера

ashev87/propstack-mcp

ashev87/propstack-mcp

MCP-сервер для подключения AI-ассистентов к CRM недвижимости Propstack. Позволяет управлять контактами, объектами, сделками и задачами, а также создавать поисковые профили и получать 360-градусную сводку перед звонком. Идеален для риелторов.

TypeScript8
soil-dev/capsulemcp

soil-dev/capsulemcp

MCP сервер CapsuleMCP подключает Claude к Capsule CRM для ответов на естественном языке о контактах, сделках и проектах. Включает 89 инструментов с полным доступом, фильтрацией и файлами. Полезен для быстрого поиска в CRM через ИИ-ассистента.

TypeScript5
offorte/offorte-mcp-server

offorte/offorte-mcp-server

MCP-сервер для связи AI-агентов с платформой Offorte. Позволяет создавать и отправлять коммерческие предложения через API, используя голос или текст. Подходит для автоматизации продаж и быстрой ген...

TypeScript5
hmk/attio-mcp-server

hmk/attio-mcp-server

MCP сервер для Attio, AI-native CRM. Claude с его помощью читает и записывает данные компаний и заметки. Предназначен для автоматизации CRM через AI-диалоги, ускоряя работу с клиентами.

JavaScript16
louis030195/apollo-io-mcp

louis030195/apollo-io-mcp

MCP-сервер для поиска и обогащения B2B-контактов через Apollo.io. Находите перспективы по должности, компании, местоположению, получайте email'ы и LinkedIn - прямо в Claude или ChatGPT. Идеально дл...

JavaScript4
nguyenvanduocit/jira-mcp

nguyenvanduocit/jira-mcp

Jira MCP — сервер для интеграции AI-ассистентов с Atlassian Jira. Предоставляет инструменты для управления задачами, спринтами, комментариями, поиска по JQL и отслеживания разработки (PR, коммиты)....

Go97
© Каталог MCP, 2026. Все права защищены.
Проект не аффилирован с Anthropic и любыми упомянутыми продуктами.
Все названия и торговые марки принадлежат их владельцам.
Контакты для связи: hi@mcp-katalog.ru

Лука Никитин