cli-exec-raw
Execute raw CLI commands and receive structured output, including stdout, stderr, exit code, and execution time, via the mcp-cli-exec MCP Server.
Instructions
Execute a raw CLI command and return structured output
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | The CLI command to execute | |
timeout | No | Optional timeout in milliseconds (default: 5 minutes) |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "The CLI command to execute",
"type": "string"
},
"timeout": {
"description": "Optional timeout in milliseconds (default: 5 minutes)",
"minimum": 0,
"type": "number"
}
},
"required": [
"command"
],
"type": "object"
}