-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "mcp-cli-exec",
"version": "1.0.7",
"description": "A powerful CLI command execution MCP server that enables running shell commands with structured output",
"type": "module",
"bin": {
"mcp-cli-exec": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.5.0",
"execa": "^9.5.2",
"strip-ansi": "^7.1.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]+sha512.dc09430156b427f5ecfc79888899e1c39d2d690f004be70e05230b72cb173d96839587545d09429b55ac3c429c801b4dc3c0e002f653830a420fa2dd4e3cf9cf",
"repository": {
"type": "git",
"url": "https://github.com/jakenuts/mcp-cli-exec.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"mcp",
"cli",
"command",
"execution",
"shell",
"modelcontextprotocol"
],
"author": "jakenuts",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}