close-crm-cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +566 -0
- package/CLAUDE.md +148 -0
- package/README.md +242 -0
- package/dist/index.js +4560 -0
- package/dist/index.js.map +1 -0
- package/dist/mcp.js +4262 -0
- package/dist/mcp.js.map +1 -0
- package/package.json +52 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "close-crm-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "CLI and MCP server for the Close CRM platform — full API coverage for AI agents",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"close": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"CLOSE.md",
|
|
12
|
+
"AGENTS.md",
|
|
13
|
+
"CLAUDE.md"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "tsx src/index.ts",
|
|
17
|
+
"dev:mcp": "tsx src/mcp.ts",
|
|
18
|
+
"build": "tsup",
|
|
19
|
+
"typecheck": "tsc --noEmit",
|
|
20
|
+
"prepublishOnly": "npm run build"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"close",
|
|
24
|
+
"close-crm",
|
|
25
|
+
"crm",
|
|
26
|
+
"sales",
|
|
27
|
+
"leads",
|
|
28
|
+
"pipeline",
|
|
29
|
+
"cli",
|
|
30
|
+
"mcp",
|
|
31
|
+
"ai-agent",
|
|
32
|
+
"claude",
|
|
33
|
+
"openai"
|
|
34
|
+
],
|
|
35
|
+
"author": "bcharleson",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=18.0.0"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@inquirer/prompts": "^8.3.0",
|
|
42
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
43
|
+
"commander": "^14.0.3",
|
|
44
|
+
"zod": "^3.24.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/node": "^22.0.0",
|
|
48
|
+
"tsup": "^8.4.0",
|
|
49
|
+
"tsx": "^4.19.0",
|
|
50
|
+
"typescript": "^5.7.0"
|
|
51
|
+
}
|
|
52
|
+
}
|