Pipedrive Automation via Rube MCP
Automate Pipedrive CRM workflows including deal management, contact and organization operations, activity scheduling, notes, and pipeline/stage queries through Composio's Pipedrive toolkit.
Toolkit docs: composio.dev/toolkits/pipedrive
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active Pipedrive connection via
RUBE_MANAGE_CONNECTIONS with toolkit pipedrive
- Always call
RUBE_SEARCH_TOOLS first to get current tool schemas
Setup
Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
- Verify Rube MCP is available by confirming
RUBE_SEARCH_TOOLS responds
- Call
RUBE_MANAGE_CONNECTIONS with toolkit pipedrive
- If connection is not ACTIVE, follow the returned auth link to complete Pipedrive OAuth
- Confirm connection status shows ACTIVE before running any workflows
Core Workflows
1. Create and Manage Deals
When to use: User wants to create a new deal, update an existing deal, or review deal details in the sales pipeline.
Tool sequence:
PIPEDRIVE_SEARCH_ORGANIZATIONS - Find existing org to link to the deal [Optional]
PIPEDRIVE_ADD_AN_ORGANIZATION - Create organization if none found [Optional]
PIPEDRIVE_SEARCH_PERSONS - Find existing contact to link [Optional]
PIPEDRIVE_ADD_A_PERSON - Create contact if none found [Optional]
PIPEDRIVE_GET_ALL_PIPELINES - Resolve pipeline ID [Prerequisite]
PIPEDRIVE_GET_ALL_STAGES - Resolve stage ID within the pipeline [Prerequisite]
PIPEDRIVE_ADD_A_DEAL - Create the deal with title, value, org_id, person_id, stage_id [Required]
PIPEDRIVE_UPDATE_A_DEAL - Modify deal properties after creation [Optional]
PIPEDRIVE_ADD_A_PRODUCT_TO_A_DEAL - Attach line items/products [Optional]
Key parameters:
title: Deal title (required for creation)
value: Monetary value of the deal
currency: 3-letter ISO currency code (e.g., "USD")
pipeline_id / stage_id: Numeric IDs for pipeline placement
org_id / person_id: Link to organization and contact
status: "open", "won", or "lost"
expected_close_date: Format YYYY-MM-DD
Pitfalls:
title is the only required field for PIPEDRIVE_ADD_A_DEAL; all others are optional
- Custom fields appear as long hash keys in responses; use dealFields endpoint to map them
PIPEDRIVE_UPDATE_A_DEAL requires the numeric id of the deal
- Setting
status to "lost" requires also providing lost_reason
2. Manage Contacts (Persons and Organizations)
When to use: User wants to create, update, search, or list contacts and companies in Pipedrive.
Tool sequence:
PIPEDRIVE_SEARCH_PERSONS - Search for existing person by name, email, or phone [Prerequisite]
PIPEDRIVE_ADD_A_PERSON - Create new contact if not found [Required]
PIPEDRIVE_UPDATE_A_PERSON - Modify existing contact details [Optional]
PIPEDRIVE_GET_DETAILS_OF_A_PERSON - Retrieve full contact record [Optional]
PIPEDRIVE_SEARCH_ORGANIZATIONS - Search for existing organization [Prerequisite]
PIPEDRIVE_ADD_AN_ORGANIZATION - Create new organization if not found [Required]
PIPEDRIVE_UPDATE_AN_ORGANIZATION - Modify organization properties [Optional]
PIPEDRIVE_GET_DETAILS_OF_AN_ORGANIZATION - Retrieve full org record [Optional]
Key parameters:
name: Required for both person and organization creation
email: Array of objects with value, label, primary fields for persons
phone: Array of objects with value, label, primary fields for persons
org_id: Link a person to an organization
visible_to: 1 = owner only, 3 = entire company
term: Search term for SEARCH_PERSONS / SEARCH_ORGANIZATIONS (minimum 2 characters)
Pitfalls:
PIPEDRIVE_ADD_AN_ORGANIZATION may auto-merge with an existing org; check response.additional_data.didMerge
- Email and phone fields are arrays of objects, not plain strings:
[{"value": "test@example.com", "label": "work", "primary": true}]
PIPEDRIVE_SEARCH_PERSONS wildcards like * or @ are NOT supported; use PIPEDRIVE_GET_ALL_PERSONS to list all
- Deletion via
PIPEDRIVE_DELETE_A_PERSON or PIPEDRIVE_DELETE_AN_ORGANIZATION is soft-delete with 30-day retention, then permanent
3. Schedule and Track Activities
When to use: User wants to create calls, meetings, tasks, or other activities linked to deals, contacts, or organizations.
Tool sequence:
PIPEDRIVE_SEARCH_PERSONS or PIPEDRIVE_GET_DETAILS_OF_A_DEAL - Resolve linked entity IDs [Prerequisite]
PIPEDRIVE_ADD_AN_ACTIVITY - Create the activity with subject, type, due date [Required]
PIPEDRIVE_UPDATE_AN_ACTIVITY - Modify activity details or mark as done [Optional]
PIPEDRIVE_GET_DETAILS_OF_AN_ACTIVITY - Retrieve activity record [Optional]
PIPEDRIVE_GET_ALL_ACTIVITIES_ASSIGNED_TO_A_PARTICULAR_USER - List user's activities [Optional]
Key parameters:
subject: Activity title (required)
type: Activity type key string, e.g., "call", "meeting", "task", "email" (required)
due_date: Format YYYY-MM-DD
due_time: Format HH:MM
duration: Format HH:MM (e.g., "00:30" for 30 minutes)
deal_id / person_id / org_id: Link to related entities
done: 0 = not done, 1 = done
Pitfalls:
- Both
subject and type are required for PIPEDRIVE_ADD_AN_ACTIVITY
type must match an existing ActivityTypes key_string in the account
done is an integer (0 or 1), not a boolean
- Response includes
more_activities_scheduled_in_context in additional_data
4. Add and Manage Notes
When to use: User wants to attach notes to deals, persons, organizations, leads, or projects.
Tool sequence:
PIPEDRIVE_SEARCH_PERSONS or PIPEDRIVE_GET_DETAILS_OF_A_DEAL - Resolve entity ID [Prerequisite]
PIPEDRIVE_ADD_A_NOTE - Create note with HTML content linked to an entity [Required]
PIPEDRIVE_UPDATE_A_NOTE - Modify note content [Optional]
PIPEDRIVE_GET_ALL_NOTES - List notes filtered by entity [Optional]
PIPEDRIVE_GET_ALL_COMMENTS_FOR_A_NOTE - Retrieve comments on a note [Optional]
Key parameters:
content: Note body in HTML format (required)
deal_id / person_id / org_id / lead_id / project_id: At least one entity link required
pinned_to_deal_flag / pinned_to_person_flag: Filter pinned notes when listing
Pitfalls:
content is required and supports HTML; plain text works but is sanitized server-side
- At least one of
deal_id, person_id, org_id, lead_id, or project_id must be provided
PIPEDRIVE_GET_ALL_NOTES returns notes across all entities by default; filter with entity ID params
5. Query Pipelines and Stages
When to use: User wants to view sales pipelines, stages, or deals within a pipeline/stage.
Tool sequence:
PIPEDRIVE_GET_ALL_PIPELINES - List all pipelines and their IDs [Required]
PIPEDRIVE_GET_ONE_PIPELINE - Get details and deal summary for a specific pipeline [Optional]
PIPEDRIVE_GET_ALL_STAGES - List all stages, optionally filtered by pipeline [Required]
PIPEDRIVE_GET_ONE_STAGE - Get details for a specific stage [Optional]
PIPEDRIVE_GET_DEALS_IN_A_PIPELINE - List all deals across stages in a pipeline [Optional]
PIPEDRIVE_GET_DEALS_IN_A_STAGE - List deals in a specific stage [Optional]
Key parameters:
id: Pipeline or stage ID (required for single-item endpoints)
pipeline_id: Filter stages by pipeline
totals_convert_currency: 3-letter currency code or "default_currency" for converted totals
get_summary: Set to 1 for deal summary in pipeline responses
Pitfalls:
PIPEDRIVE_GET_ALL_PIPELINES takes no parameters; returns all pipelines
PIPEDRIVE_GET_ALL_STAGES returns stages for ALL pipelines unless pipeline_id is specified
- Deal counts in pipeline summaries use
per_stages_converted only when totals_convert_currency is set
Common Patterns
ID Resolution
Always resolve display names to numeric IDs before operations:
- Organization name -> org_id:
PIPEDRIVE_SEARCH_ORGANIZATIONS with term param
- Person name -> person_id:
PIPEDRIVE_SEARCH_PERSONS with term param
- Pipeline name -> pipeline_id:
PIPEDRIVE_GET_ALL_PIPELINES then match by name
- Stage name -> stage_id:
PIPEDRIVE_GET_ALL_STAGES with pipeline_id then match by name
Pagination
Most list endpoints use offset-based pagination:
- Use
start (offset) and limit (page size) parameters
- Check
additional_data.pagination.more_items_in_collection to know if more pages exist
- Use
additional_data.pagination.next_start as the start value for the next page
- Default limit is ~500 for some endpoints; set explicitly for predictable paging
Known Pitfalls
ID Formats
- All entity IDs (deal, person, org, activity, pipeline, stage) are numeric integers
- Lead IDs are UUID strings, not integers
- Custom field keys are long alphanumeric hashes (e.g., "a1b2c3d4e5f6...")
Rate Limits
- Pipedrive enforces per-company API rate limits; bulk operations should be paced
PIPEDRIVE_GET_ALL_PERSONS and PIPEDRIVE_GET_ALL_ORGANIZATIONS can return large datasets; always paginate
Parameter Quirks
- Email and phone on persons are arrays of objects, not plain strings
visible_to is numeric: 1 = owner only, 3 = entire company, 5 = specific groups
done on activities is integer 0/1, not boolean true/false
- Organization creation may auto-merge duplicates silently; check
didMerge in response
PIPEDRIVE_SEARCH_PERSONS requires minimum 2 characters and does not support wildcards
Response Structure
- Custom fields appear as hash keys in responses; map them via the respective Fields endpoints
- Responses often nest data under
response.data.data in wrapped executions
- Search results are under
response.data.items, not top-level
Quick Reference
| Task |
Tool Slug |
Key Params |
| Create deal |
PIPEDRIVE_ADD_A_DEAL |
title, value, org_id, stage_id |
| Update deal |
PIPEDRIVE_UPDATE_A_DEAL |
id, status, value, stage_id |
| Get deal details |
PIPEDRIVE_GET_DETAILS_OF_A_DEAL |
id |
| Search persons |
PIPEDRIVE_SEARCH_PERSONS |
term, fields |
| Add person |
PIPEDRIVE_ADD_A_PERSON |
name, email, phone, org_id |
| Update person |
PIPEDRIVE_UPDATE_A_PERSON |
id, name, email |
| Get person details |
PIPEDRIVE_GET_DETAILS_OF_A_PERSON |
id |
| List all persons |
PIPEDRIVE_GET_ALL_PERSONS |
start, limit, filter_id |
| Search organizations |
PIPEDRIVE_SEARCH_ORGANIZATIONS |
term, fields |
| Add organization |
PIPEDRIVE_ADD_AN_ORGANIZATION |
name, visible_to |
| Update organization |
PIPEDRIVE_UPDATE_AN_ORGANIZATION |
id, name, address |
| Get org details |
PIPEDRIVE_GET_DETAILS_OF_AN_ORGANIZATION |
id |
| Add activity |
PIPEDRIVE_ADD_AN_ACTIVITY |
subject, type, due_date, deal_id |
| Update activity |
PIPEDRIVE_UPDATE_AN_ACTIVITY |
id, done, due_date |
| Get activity details |
PIPEDRIVE_GET_DETAILS_OF_AN_ACTIVITY |
id |
| List user activities |
PIPEDRIVE_GET_ALL_ACTIVITIES_ASSIGNED_TO_A_PARTICULAR_USER |
user_id, start, limit |
| Add note |
PIPEDRIVE_ADD_A_NOTE |
content, deal_id or person_id |
| List notes |
PIPEDRIVE_GET_ALL_NOTES |
deal_id, person_id, start, limit |
| List pipelines |
PIPEDRIVE_GET_ALL_PIPELINES |
(none) |
| Get pipeline details |
PIPEDRIVE_GET_ONE_PIPELINE |
id |
| List stages |
PIPEDRIVE_GET_ALL_STAGES |
pipeline_id |
| Deals in pipeline |
PIPEDRIVE_GET_DEALS_IN_A_PIPELINE |
id, stage_id |
| Deals in stage |
PIPEDRIVE_GET_DEALS_IN_A_STAGE |
id, start, limit |
| Add product to deal |
PIPEDRIVE_ADD_A_PRODUCT_TO_A_DEAL |
id, product_id, item_price |
Powered by Composio
Source: davepoon/buildwithclaude → plugins/all-skills/skills/pipedrive-automation/SKILL.md
1---2name: pipedrive-automation-23description: Automate Pipedrive CRM operations including deals, contacts, organizations, activities, notes, and pipeline management via Rube MCP (Composio). Always search tools first for current schemas.4---567# Pipedrive Automation via Rube MCP89Automate Pipedrive CRM workflows including deal management, contact and organization operations, activity scheduling, notes, and pipeline/stage queries through Composio's Pipedrive toolkit.1011**Toolkit docs**: [composio.dev/toolkits/pipedrive](https://composio.dev/toolkits/pipedrive)1213## Prerequisites1415- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)16- Active Pipedrive connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `pipedrive`17- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas1819## Setup2021**Get Rube MCP**: Add `https://rube.app/mcp` as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.2223241. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds252. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `pipedrive`263. If connection is not ACTIVE, follow the returned auth link to complete Pipedrive OAuth274. Confirm connection status shows ACTIVE before running any workflows2829## Core Workflows3031### 1. Create and Manage Deals3233**When to use**: User wants to create a new deal, update an existing deal, or review deal details in the sales pipeline.3435**Tool sequence**:361. `PIPEDRIVE_SEARCH_ORGANIZATIONS` - Find existing org to link to the deal [Optional]372. `PIPEDRIVE_ADD_AN_ORGANIZATION` - Create organization if none found [Optional]383. `PIPEDRIVE_SEARCH_PERSONS` - Find existing contact to link [Optional]394. `PIPEDRIVE_ADD_A_PERSON` - Create contact if none found [Optional]405. `PIPEDRIVE_GET_ALL_PIPELINES` - Resolve pipeline ID [Prerequisite]416. `PIPEDRIVE_GET_ALL_STAGES` - Resolve stage ID within the pipeline [Prerequisite]427. `PIPEDRIVE_ADD_A_DEAL` - Create the deal with title, value, org_id, person_id, stage_id [Required]438. `PIPEDRIVE_UPDATE_A_DEAL` - Modify deal properties after creation [Optional]449. `PIPEDRIVE_ADD_A_PRODUCT_TO_A_DEAL` - Attach line items/products [Optional]4546**Key parameters**:47- `title`: Deal title (required for creation)48- `value`: Monetary value of the deal49- `currency`: 3-letter ISO currency code (e.g., "USD")50- `pipeline_id` / `stage_id`: Numeric IDs for pipeline placement51- `org_id` / `person_id`: Link to organization and contact52- `status`: "open", "won", or "lost"53- `expected_close_date`: Format YYYY-MM-DD5455**Pitfalls**:56- `title` is the only required field for `PIPEDRIVE_ADD_A_DEAL`; all others are optional57- Custom fields appear as long hash keys in responses; use dealFields endpoint to map them58- `PIPEDRIVE_UPDATE_A_DEAL` requires the numeric `id` of the deal59- Setting `status` to "lost" requires also providing `lost_reason`6061### 2. Manage Contacts (Persons and Organizations)6263**When to use**: User wants to create, update, search, or list contacts and companies in Pipedrive.6465**Tool sequence**:661. `PIPEDRIVE_SEARCH_PERSONS` - Search for existing person by name, email, or phone [Prerequisite]672. `PIPEDRIVE_ADD_A_PERSON` - Create new contact if not found [Required]683. `PIPEDRIVE_UPDATE_A_PERSON` - Modify existing contact details [Optional]694. `PIPEDRIVE_GET_DETAILS_OF_A_PERSON` - Retrieve full contact record [Optional]705. `PIPEDRIVE_SEARCH_ORGANIZATIONS` - Search for existing organization [Prerequisite]716. `PIPEDRIVE_ADD_AN_ORGANIZATION` - Create new organization if not found [Required]727. `PIPEDRIVE_UPDATE_AN_ORGANIZATION` - Modify organization properties [Optional]738. `PIPEDRIVE_GET_DETAILS_OF_AN_ORGANIZATION` - Retrieve full org record [Optional]7475**Key parameters**:76- `name`: Required for both person and organization creation77- `email`: Array of objects with `value`, `label`, `primary` fields for persons78- `phone`: Array of objects with `value`, `label`, `primary` fields for persons79- `org_id`: Link a person to an organization80- `visible_to`: 1 = owner only, 3 = entire company81- `term`: Search term for SEARCH_PERSONS / SEARCH_ORGANIZATIONS (minimum 2 characters)8283**Pitfalls**:84- `PIPEDRIVE_ADD_AN_ORGANIZATION` may auto-merge with an existing org; check `response.additional_data.didMerge`85- Email and phone fields are arrays of objects, not plain strings: `[{"value": "test@example.com", "label": "work", "primary": true}]`86- `PIPEDRIVE_SEARCH_PERSONS` wildcards like `*` or `@` are NOT supported; use `PIPEDRIVE_GET_ALL_PERSONS` to list all87- Deletion via `PIPEDRIVE_DELETE_A_PERSON` or `PIPEDRIVE_DELETE_AN_ORGANIZATION` is soft-delete with 30-day retention, then permanent8889### 3. Schedule and Track Activities9091**When to use**: User wants to create calls, meetings, tasks, or other activities linked to deals, contacts, or organizations.9293**Tool sequence**:941. `PIPEDRIVE_SEARCH_PERSONS` or `PIPEDRIVE_GET_DETAILS_OF_A_DEAL` - Resolve linked entity IDs [Prerequisite]952. `PIPEDRIVE_ADD_AN_ACTIVITY` - Create the activity with subject, type, due date [Required]963. `PIPEDRIVE_UPDATE_AN_ACTIVITY` - Modify activity details or mark as done [Optional]974. `PIPEDRIVE_GET_DETAILS_OF_AN_ACTIVITY` - Retrieve activity record [Optional]985. `PIPEDRIVE_GET_ALL_ACTIVITIES_ASSIGNED_TO_A_PARTICULAR_USER` - List user's activities [Optional]99100**Key parameters**:101- `subject`: Activity title (required)102- `type`: Activity type key string, e.g., "call", "meeting", "task", "email" (required)103- `due_date`: Format YYYY-MM-DD104- `due_time`: Format HH:MM105- `duration`: Format HH:MM (e.g., "00:30" for 30 minutes)106- `deal_id` / `person_id` / `org_id`: Link to related entities107- `done`: 0 = not done, 1 = done108109**Pitfalls**:110- Both `subject` and `type` are required for `PIPEDRIVE_ADD_AN_ACTIVITY`111- `type` must match an existing ActivityTypes key_string in the account112- `done` is an integer (0 or 1), not a boolean113- Response includes `more_activities_scheduled_in_context` in additional_data114115### 4. Add and Manage Notes116117**When to use**: User wants to attach notes to deals, persons, organizations, leads, or projects.118119**Tool sequence**:1201. `PIPEDRIVE_SEARCH_PERSONS` or `PIPEDRIVE_GET_DETAILS_OF_A_DEAL` - Resolve entity ID [Prerequisite]1212. `PIPEDRIVE_ADD_A_NOTE` - Create note with HTML content linked to an entity [Required]1223. `PIPEDRIVE_UPDATE_A_NOTE` - Modify note content [Optional]1234. `PIPEDRIVE_GET_ALL_NOTES` - List notes filtered by entity [Optional]1245. `PIPEDRIVE_GET_ALL_COMMENTS_FOR_A_NOTE` - Retrieve comments on a note [Optional]125126**Key parameters**:127- `content`: Note body in HTML format (required)128- `deal_id` / `person_id` / `org_id` / `lead_id` / `project_id`: At least one entity link required129- `pinned_to_deal_flag` / `pinned_to_person_flag`: Filter pinned notes when listing130131**Pitfalls**:132- `content` is required and supports HTML; plain text works but is sanitized server-side133- At least one of `deal_id`, `person_id`, `org_id`, `lead_id`, or `project_id` must be provided134- `PIPEDRIVE_GET_ALL_NOTES` returns notes across all entities by default; filter with entity ID params135136### 5. Query Pipelines and Stages137138**When to use**: User wants to view sales pipelines, stages, or deals within a pipeline/stage.139140**Tool sequence**:1411. `PIPEDRIVE_GET_ALL_PIPELINES` - List all pipelines and their IDs [Required]1422. `PIPEDRIVE_GET_ONE_PIPELINE` - Get details and deal summary for a specific pipeline [Optional]1433. `PIPEDRIVE_GET_ALL_STAGES` - List all stages, optionally filtered by pipeline [Required]1444. `PIPEDRIVE_GET_ONE_STAGE` - Get details for a specific stage [Optional]1455. `PIPEDRIVE_GET_DEALS_IN_A_PIPELINE` - List all deals across stages in a pipeline [Optional]1466. `PIPEDRIVE_GET_DEALS_IN_A_STAGE` - List deals in a specific stage [Optional]147148**Key parameters**:149- `id`: Pipeline or stage ID (required for single-item endpoints)150- `pipeline_id`: Filter stages by pipeline151- `totals_convert_currency`: 3-letter currency code or "default_currency" for converted totals152- `get_summary`: Set to 1 for deal summary in pipeline responses153154**Pitfalls**:155- `PIPEDRIVE_GET_ALL_PIPELINES` takes no parameters; returns all pipelines156- `PIPEDRIVE_GET_ALL_STAGES` returns stages for ALL pipelines unless `pipeline_id` is specified157- Deal counts in pipeline summaries use `per_stages_converted` only when `totals_convert_currency` is set158159## Common Patterns160161### ID Resolution162Always resolve display names to numeric IDs before operations:163- **Organization name -> org_id**: `PIPEDRIVE_SEARCH_ORGANIZATIONS` with `term` param164- **Person name -> person_id**: `PIPEDRIVE_SEARCH_PERSONS` with `term` param165- **Pipeline name -> pipeline_id**: `PIPEDRIVE_GET_ALL_PIPELINES` then match by name166- **Stage name -> stage_id**: `PIPEDRIVE_GET_ALL_STAGES` with `pipeline_id` then match by name167168### Pagination169Most list endpoints use offset-based pagination:170- Use `start` (offset) and `limit` (page size) parameters171- Check `additional_data.pagination.more_items_in_collection` to know if more pages exist172- Use `additional_data.pagination.next_start` as the `start` value for the next page173- Default limit is ~500 for some endpoints; set explicitly for predictable paging174175## Known Pitfalls176177### ID Formats178- All entity IDs (deal, person, org, activity, pipeline, stage) are numeric integers179- Lead IDs are UUID strings, not integers180- Custom field keys are long alphanumeric hashes (e.g., "a1b2c3d4e5f6...")181182### Rate Limits183- Pipedrive enforces per-company API rate limits; bulk operations should be paced184- `PIPEDRIVE_GET_ALL_PERSONS` and `PIPEDRIVE_GET_ALL_ORGANIZATIONS` can return large datasets; always paginate185186### Parameter Quirks187- Email and phone on persons are arrays of objects, not plain strings188- `visible_to` is numeric: 1 = owner only, 3 = entire company, 5 = specific groups189- `done` on activities is integer 0/1, not boolean true/false190- Organization creation may auto-merge duplicates silently; check `didMerge` in response191- `PIPEDRIVE_SEARCH_PERSONS` requires minimum 2 characters and does not support wildcards192193### Response Structure194- Custom fields appear as hash keys in responses; map them via the respective Fields endpoints195- Responses often nest data under `response.data.data` in wrapped executions196- Search results are under `response.data.items`, not top-level197198## Quick Reference199200| Task | Tool Slug | Key Params |201|------|-----------|------------|202| Create deal | `PIPEDRIVE_ADD_A_DEAL` | `title`, `value`, `org_id`, `stage_id` |203| Update deal | `PIPEDRIVE_UPDATE_A_DEAL` | `id`, `status`, `value`, `stage_id` |204| Get deal details | `PIPEDRIVE_GET_DETAILS_OF_A_DEAL` | `id` |205| Search persons | `PIPEDRIVE_SEARCH_PERSONS` | `term`, `fields` |206| Add person | `PIPEDRIVE_ADD_A_PERSON` | `name`, `email`, `phone`, `org_id` |207| Update person | `PIPEDRIVE_UPDATE_A_PERSON` | `id`, `name`, `email` |208| Get person details | `PIPEDRIVE_GET_DETAILS_OF_A_PERSON` | `id` |209| List all persons | `PIPEDRIVE_GET_ALL_PERSONS` | `start`, `limit`, `filter_id` |210| Search organizations | `PIPEDRIVE_SEARCH_ORGANIZATIONS` | `term`, `fields` |211| Add organization | `PIPEDRIVE_ADD_AN_ORGANIZATION` | `name`, `visible_to` |212| Update organization | `PIPEDRIVE_UPDATE_AN_ORGANIZATION` | `id`, `name`, `address` |213| Get org details | `PIPEDRIVE_GET_DETAILS_OF_AN_ORGANIZATION` | `id` |214| Add activity | `PIPEDRIVE_ADD_AN_ACTIVITY` | `subject`, `type`, `due_date`, `deal_id` |215| Update activity | `PIPEDRIVE_UPDATE_AN_ACTIVITY` | `id`, `done`, `due_date` |216| Get activity details | `PIPEDRIVE_GET_DETAILS_OF_AN_ACTIVITY` | `id` |217| List user activities | `PIPEDRIVE_GET_ALL_ACTIVITIES_ASSIGNED_TO_A_PARTICULAR_USER` | `user_id`, `start`, `limit` |218| Add note | `PIPEDRIVE_ADD_A_NOTE` | `content`, `deal_id` or `person_id` |219| List notes | `PIPEDRIVE_GET_ALL_NOTES` | `deal_id`, `person_id`, `start`, `limit` |220| List pipelines | `PIPEDRIVE_GET_ALL_PIPELINES` | (none) |221| Get pipeline details | `PIPEDRIVE_GET_ONE_PIPELINE` | `id` |222| List stages | `PIPEDRIVE_GET_ALL_STAGES` | `pipeline_id` |223| Deals in pipeline | `PIPEDRIVE_GET_DEALS_IN_A_PIPELINE` | `id`, `stage_id` |224| Deals in stage | `PIPEDRIVE_GET_DEALS_IN_A_STAGE` | `id`, `start`, `limit` |225| Add product to deal | `PIPEDRIVE_ADD_A_PRODUCT_TO_A_DEAL` | `id`, `product_id`, `item_price` |226227---228*Powered by [Composio](https://composio.dev)*229230---231232**Source:** [`davepoon/buildwithclaude`](https://github.com/davepoon/buildwithclaude) → `plugins/all-skills/skills/pipedrive-automation/SKILL.md`