1.0.7npm · mcp-cli-exec · current release
Observed 2026-08-17T18:57:13.656Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2024-11-05.
{
"tools": {}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
cli-execExecute one or more CLI commands in a specific working directoryInput schema{
"type": "object",
"properties": {
"workingDirectory": {
"type": "string",
"description": "Working directory to execute commands in"
},
"commands": {
"oneOf": [
{
"type": "string",
"description": "Single command or && separated commands"
},
{
"type": "array",
"items": {
"type": "string"
},
"description": "Array of commands to execute sequentially"
}
],
"description": "Commands to execute"
},
"timeout": {
"type": "number",
"description": "Optional timeout in milliseconds per command (default: 5 minutes)",
"minimum": 0
}
},
"required": [
"workingDirectory",
"commands"
]
} | — | — · — | — |
cli-exec-rawExecute a raw CLI command and return structured outputInput schema{
"type": "object",
"properties": {
"command": {
"type": "string",
"description": "The CLI command to execute"
},
"timeout": {
"type": "number",
"description": "Optional timeout in milliseconds (default: 5 minutes)",
"minimum": 0
}
},
"required": [
"command"
]
} | — | — · — | — |