Skip to content

Commit db59096

Browse files
committed
Add Pipedrive MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 2fd91f8 commit db59096

1 file changed

Lines changed: 73 additions & 0 deletions

File tree

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "iamsamuelfraga.pipedrive-mcp-npx",
4+
"name": "Pipedrive (npx)",
5+
"alias": "pipedrive",
6+
"description": "Connect to Pipedrive CRM to manage deals, persons, organizations, activities, pipelines, notes, files, and custom fields. Exposes 100+ tools with optional read-only safety mode.",
7+
"logo": "https://avatars.githubusercontent.com/u/15862787?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"productivity"
11+
],
12+
"tags": [
13+
"pipedrive",
14+
"crm",
15+
"sales",
16+
"deals",
17+
"contacts",
18+
"pipeline"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "npx",
23+
"args": [
24+
"-y",
25+
"@iamsamuelfraga/mcp-pipedrive"
26+
],
27+
"env": {
28+
"PIPEDRIVE_API_TOKEN": "${input:PIPEDRIVE_API_TOKEN}"
29+
},
30+
"metadata": {
31+
"inputs": [
32+
{
33+
"id": "PIPEDRIVE_API_TOKEN",
34+
"label": "Pipedrive API Token",
35+
"description": "Your Pipedrive personal API token. Used to authenticate all CRM operations.",
36+
"type": "text",
37+
"required": true,
38+
"secret": true,
39+
"placeholder": "********************************",
40+
"obtain": {
41+
"url": "https://app.pipedrive.com/settings/api",
42+
"instructions": "1. Sign in to Pipedrive\n2. Go to Settings > Personal preferences > API\n3. Copy your personal API token",
43+
"button_label": "Get API Token"
44+
}
45+
}
46+
]
47+
}
48+
},
49+
"auth": {
50+
"type": "api_key",
51+
"instructions": "Get your personal API token from Pipedrive Settings > Personal preferences > API (https://app.pipedrive.com/settings/api)."
52+
},
53+
"contributor": {
54+
"name": "iamsamuelfraga",
55+
"github": "iamsamuelfraga",
56+
"url": "https://github.com/iamsamuelfraga/mcp-pipedrive"
57+
},
58+
"links": {
59+
"repository": "https://github.com/iamsamuelfraga/mcp-pipedrive",
60+
"homepage": "https://github.com/iamsamuelfraga/mcp-pipedrive",
61+
"documentation": "https://github.com/iamsamuelfraga/mcp-pipedrive#readme"
62+
},
63+
"platforms": [
64+
"all"
65+
],
66+
"capabilities": {
67+
"tools": true,
68+
"resources": true,
69+
"prompts": true,
70+
"read_only_mode": true
71+
},
72+
"changelog_url": "https://github.com/iamsamuelfraga/mcp-pipedrive/releases"
73+
}

0 commit comments

Comments
 (0)