forked from Teapot-Agency/mcp_pipedrive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "pipedrive-mcp-server",
"version": "2.0.0",
"description": "Model Context Protocol server for Pipedrive API integration",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "node --import tsx src/index.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.1",
"dotenv": "^16.4.7",
"bottleneck": "^2.19.5",
"jsonwebtoken": "^9.0.2",
"pipedrive": "^22.10.1",
"ts-node": "^10.9.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.10.5",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juhokoskela/pipedrive-mcp-server.git"
},
"keywords": [
"pipedrive",
"mcp",
"model-context-protocol",
"api",
"crm"
],
"author": "Will Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/juhokoskela/pipedrive-mcp-server/issues"
},
"homepage": "https://github.com/juhokoskela/pipedrive-mcp-server#readme"
}