-
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.51 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.51 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": "@hyperpolymath/boj-server",
"version": "0.4.2",
"description": "Bundle of Joy (BoJ) MCP Server — cartridge-based DevOps + multi-agent coordination toolkit with 100 domain cartridges (database, container, git, k8s, observability, secrets, IaC, multi-instance AI coord, and more). Formally verified (Idris2) core; MPL-2.0.",
"license": "MPL-2.0",
"author": "Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>",
"repository": {
"type": "git",
"url": "git+https://github.com/hyperpolymath/boj-server.git"
},
"homepage": "https://github.com/hyperpolymath/boj-server#readme",
"bugs": {
"url": "https://github.com/hyperpolymath/boj-server/issues"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"devops",
"containers",
"kubernetes",
"database",
"git",
"github",
"gitlab",
"observability",
"iac",
"secrets",
"formal-verification",
"idris2",
"zig",
"multi-agent",
"coordination",
"claude",
"cartridge"
],
"type": "module",
"bin": {
"boj-server": "mcp-bridge/main.js"
},
"main": "./mcp-bridge/main.js",
"files": [
"mcp-bridge/",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"start": "node mcp-bridge/main.js",
"test": "node --test mcp-bridge/tests/dispatch_test.js",
"prepublishOnly": "node --test mcp-bridge/tests/dispatch_test.js"
},
"engines": {
"node": ">=18.0.0"
}
}