karukia-mcp 1.2.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/LICENSE +37 -0
- package/README.md +232 -0
- package/dist/http.js +6230 -0
- package/dist/index.js +6231 -0
- package/package.json +68 -0
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "karukia-mcp",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "KARUKIA MCP Server v1.2 — AI-powered development methodology with 21 tools, 11 skills, 935+ security/quality/pentest checkpoints. Works with any AI platform via MCP protocol.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"security",
|
|
8
|
+
"audit",
|
|
9
|
+
"owasp",
|
|
10
|
+
"hds",
|
|
11
|
+
"iso27001",
|
|
12
|
+
"opquast",
|
|
13
|
+
"pentest",
|
|
14
|
+
"checklist",
|
|
15
|
+
"compliance",
|
|
16
|
+
"claude",
|
|
17
|
+
"ai-security"
|
|
18
|
+
],
|
|
19
|
+
"author": "KARUKIA <contact@karukia.com>",
|
|
20
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
21
|
+
"type": "module",
|
|
22
|
+
"bin": {
|
|
23
|
+
"karukia-mcp": "./dist/index.js"
|
|
24
|
+
},
|
|
25
|
+
"main": "dist/index.js",
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
"README.md",
|
|
29
|
+
"LICENSE"
|
|
30
|
+
],
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "node esbuild.config.mjs",
|
|
33
|
+
"build:check": "tsc --noEmit",
|
|
34
|
+
"start": "node dist/index.js",
|
|
35
|
+
"start:http": "node dist/http.js",
|
|
36
|
+
"dev": "tsc --watch",
|
|
37
|
+
"prepublishOnly": "npm run build:check && npm run build"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
41
|
+
"cors": "^2.8.6",
|
|
42
|
+
"express": "^5.1.0",
|
|
43
|
+
"express-rate-limit": "^8.2.1",
|
|
44
|
+
"helmet": "^8.1.0",
|
|
45
|
+
"pino": "^10.3.1",
|
|
46
|
+
"zod": "^3.24.4"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@types/cors": "^2.8.19",
|
|
50
|
+
"@types/express": "^5.0.2",
|
|
51
|
+
"@types/node": "^22.15.21",
|
|
52
|
+
"@types/pino": "^7.0.4",
|
|
53
|
+
"esbuild": "^0.27.3",
|
|
54
|
+
"shx": "^0.4.0",
|
|
55
|
+
"typescript": "^5.8.3"
|
|
56
|
+
},
|
|
57
|
+
"engines": {
|
|
58
|
+
"node": ">=20.0.0"
|
|
59
|
+
},
|
|
60
|
+
"repository": {
|
|
61
|
+
"type": "git",
|
|
62
|
+
"url": "https://github.com/guillaum-h/KARUKIA"
|
|
63
|
+
},
|
|
64
|
+
"homepage": "https://github.com/guillaum-h/KARUKIA#readme",
|
|
65
|
+
"bugs": {
|
|
66
|
+
"url": "https://github.com/guillaum-h/KARUKIA/issues"
|
|
67
|
+
}
|
|
68
|
+
}
|