-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "capsulemcp",
"version": "2.2.0",
"description": "Model Context Protocol server for Capsule CRM. Lets Claude (Desktop, Code, or web Projects via Custom Connector) read and write your CRM in plain English. Covers contacts, opportunities, projects, tasks, timeline activity, structured filters, saved filters with sort, workflow tracks, file attachments, audit, and batch fetches.",
"keywords": [
"mcp",
"model-context-protocol",
"capsule",
"capsule-crm",
"crm",
"claude",
"claude-desktop",
"anthropic",
"ai-tools",
"agent"
],
"license": "Apache-2.0",
"author": "Anton Arapov",
"homepage": "https://github.com/soil-dev/capsulemcp#readme",
"bugs": {
"url": "https://github.com/soil-dev/capsulemcp/issues"
},
"type": "module",
"bin": {
"capsulemcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build:icon": "node scripts/build-icon.mjs",
"build": "npm run build:icon && tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit && tsc -p tsconfig.tests.json",
"lint": "biome lint src tests scripts",
"format": "biome format --write src tests scripts",
"format:check": "biome format src tests scripts",
"check": "biome check src tests scripts",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soil-dev/capsulemcp.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"express": "^5.2.1",
"express-rate-limit": "^8.6.2",
"undici": "^8.10.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.8",
"@types/express": "^5.0.6",
"@types/node": "^26.2.0",
"tsup": "^8.3.0",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"overrides": {
"@hono/node-server": "^2.0.5",
"esbuild": "^0.28.1",
"fast-uri": "^3.1.5",
"hono": "^4.13.1",
"ip-address": "^10.4.0",
"nanoid": "^3.3.18",
"postcss": "^8.5.26"
},
"engines": {
"node": ">=22.19.0"
}
}