-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.55 KB
/
package.json
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
{
"name": "mcp-cli",
"version": "1.0.5",
"description": "A secure MCP CLI server implementation with comprehensive path whitelist validation, providing controlled file system operations and command execution in a protected environment. Features include strict security measures, real-time path validation, secure command execution, and comprehensive error handling to prevent unauthorized access and system data corruption.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-cli": "./dist/index.js"
},
"files": [
"dist",
"README-zhTW.md"
],
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/index.js",
"start": "node dist/index.js",
"pub": "npm version patch && npm publish --access public"
},
"keywords": [
"mcp",
"cli",
"typescript",
"security",
"whitelist",
"path-validation",
"secure-execution",
"file-operations",
"command-control"
],
"author": "gkctou",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gkctou/mcp-cli.git"
},
"bugs": {
"url": "https://github.com/gkctou/mcp-cli/issues"
},
"homepage": "https://github.com/gkctou/mcp-cli#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"cross-env": "^7.0.3",
"shelljs": "^0.8.5",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@types/node": "^20.10.1",
"@types/shelljs": "^0.8.15",
"typescript": "^5.3.2"
}
}