A
AEO Score: 0.70 / 1.00

Pipedrive

CRM & Sales
Good โ€” Functional agent integration
Agent Ready
Connectable
MCP Type
API Only
Success Rate
๐ŸŸข High
Agent Activity
โ— New
Recipes
โ€”

Get Full Integration Guide

Current auth setup, endpoints, rate limits, known pitfalls, and step-by-step recipes โ€” kept fresh from registry checks, curated official-doc guides, and agent reports.

npx @kansei-link/mcp-server

Then use: search_services โ†’ get_service_detail

How to Connect Pipedrive to an AI Agent

Auth setup

1. Settings > Personal preferences > API > copy API token. 2. Append ?api_token={token} to all requests. 3. For OAuth: register app in Marketplace, implement auth code flow.

Key facts

Base URLhttps://api.pipedrive.com/v1/
API versionv1
AuthAPI token or OAuth 2.0. API token from Settings > Personal preferences > API. Pass as api_token query parameter or OAuth Bearer.
Token URLhttps://oauth.pipedrive.com/oauth/token
Scopesdeals:read, deals:write, persons:read, persons:write, activities:read, activities:write, etc.
Request bodyapplication/json
PaginationCursor-based: additional_data.pagination.next_start in response. Pass as start param. limit for page size.
Rate limit80 req/2sec (Essential), 160/2sec (Advanced), 240/2sec (Professional). X-RateLimit-* headers.
Error formatJSON: {"success":false,"error":"...","error_info":"...","data":null}

Key endpoints

MethodPathDescription
GET/dealsList deals with filters
POST/dealsCreate a deal
GET/personsList contacts/persons
POST/activitiesCreate an activity (call, meeting, etc.)
GET/pipelinesList sales pipelines

Quickstart

GET /v1/deals?status=open&limit=10&api_token={token}

Response: {"success":true,"data":[{"id":1,"title":"Big Deal","value":50000,...}]}

Agent pitfalls & tips

Source: curated by KanseiLink from official documentation (docs) and registry checks. Last reviewed: 2026-04-07. Specs change โ€” verify against the official docs before production use.

Frequently Asked Questions

What is Pipedrive's AEO score? โ–ผ
Pipedrive has an AEO score of 0.70 and is rated A (Functional agent integration). AEO (Agent Engine Optimization) measures how well a SaaS service works with AI agents. Scores range from 0.00 to 1.00, with grades from AAA (best) to D (not agent-ready).
Is Pipedrive AI-agent-ready? โ–ผ
Pipedrive is currently connectable for AI agent use. API access is available but no dedicated MCP server has been published yet. For detailed connection guides, auth setup, and known pitfalls, use the KanseiLink MCP tool.
How does Pipedrive compare to other CRM & Sales services? โ–ผ
In the CRM & Sales category, Pipedrive is rated A. KanseiLink evaluates services based on MCP availability, API quality, documentation, auth-guide clarity, and integration recipe availability (methodology published). Visit the full rankings at kansei-link.com to see how Pipedrive compares.
How can I integrate Pipedrive with an AI agent? โ–ผ
The fastest way to integrate Pipedrive with an AI agent is through KanseiLink MCP. Install it with: npx @kansei-link/mcp-server โ€” then use the search_services and get_service_detail tools to get the current auth setup, endpoints, rate limits, and agent-specific tips. This data is kept fresh from registry checks, curated official-doc guides, and agent reports.
How do I authenticate with Pipedrive? โ–ผ
API token or OAuth 2.0. API token from Settings > Personal preferences > API. Pass as api_token query parameter or OAuth Bearer. Setup: 1. Settings > Personal preferences > API > copy API token. 2. Append ?api_token={token} to all requests. 3. For OAuth: register app in Marketplace, implement auth code flow.
What are Pipedrive's API rate limits? โ–ผ
80 req/2sec (Essential), 160/2sec (Advanced), 240/2sec (Professional). X-RateLimit-* headers.