-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.35 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
{
"name": "@coherenceos/mcp-server",
"version": "0.2.3",
"mcpName": "io.getcoherence/mcp",
"type": "module",
"description": "MCP server exposing the Coherence platform (CRM records, collab docs, AI agents) as tools for Claude Desktop, Cursor, Cline, and other MCP-compatible clients.",
"license": "MIT",
"author": "Coherence (https://getcoherence.io)",
"homepage": "https://getcoherence.io/mcp",
"repository": {
"type": "git",
"url": "git+https://github.com/getcoherence/mcp-server.git"
},
"bugs": {
"url": "https://github.com/getcoherence/mcp-server/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"claude-desktop",
"cursor",
"cline",
"ai",
"crm",
"coherence"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"coherence-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.19.0",
"typescript": "5.4.5"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
}
}