Community MCP Server: g0t4/mcp-server-commands
runProcess toolThe runProcess tool runs processes on the host machine. There are two mutually exclusive ways to invoke it:
command_line (string) — Executed via the system's default shell (just like typing into bash/fish/pwsh/etc). Shell features like pipes, redirects, and variable expansion all work.argv (string array) — Direct executable invocation. argv[0] is the executable, the rest are arguments. No shell interpretation.You cannot pass both. The tool in...