-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.28 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.28 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
76
77
78
79
80
81
82
83
84
{
"name": "@toolate28/coherence-mcp",
"version": "0.3.1",
"description": "MCP server for coherence validation across AI systems. WAVE scoring, ATOM trail provenance, Fibonacci weighting, cross-platform translation (Claude/Grok/Gemini/Llama), and industry connectors (Slack/GitHub/Jira/Postgres). Conservation law: alpha + omega = 15.",
"type": "module",
"main": "build/index.js",
"bin": {
"coherence-mcp": "build/index.js",
"coherence-mcp-setup": "build/setup.js"
},
"files": [
"build/",
"docs/ATOM_AUTH.md",
"docs/HOPE_NPC_PLAY.md",
"docs/LAMBDA_ZERO_IMPLEMENTATION.md",
"docs/CSEP_PROTOCOL.md",
"docs/FIBONACCI_WEIGHTING.md",
"docs/quick-start.md",
"docs/testing-suite.md",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toolate28/coherence-mcp.git"
},
"homepage": "https://spiralsafe.org",
"bugs": {
"url": "https://github.com/toolate28/coherence-mcp/issues"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"bench": "python3 scripts/benchmark.py",
"bench:chaos": "python3 scripts/benchmark.py --iterations 10 --chaos-mode",
"prepublishOnly": "npm run build && npm test",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"pre-flight": "npm run build && node build/pre-flight.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"coherence",
"wave-protocol",
"ai-safety",
"multi-agent",
"cross-platform",
"fibonacci",
"atom-trail",
"spiralsafe",
"governance",
"claude",
"grok",
"gemini"
],
"author": "Hope&&Sauced <toolated@pm.me>",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@babel/parser": "^7.28.6",
"@modelcontextprotocol/sdk": "^1.25.2",
"ajv": "^8.18.0",
"dotenv": "^16.4.5",
"fast-glob": "^3.3.2",
"graph-data-structure": "^4.5.0",
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^4.0.17",
"@vitest/ui": "^4.0.17",
"typescript": "^5.3.3",
"vitest": "^4.0.17"
}
}