Community MCP Server: g0t4/mcp-server-commands
runProcess renaming/redesignRecently I renamed the tool to runProcess to better reflect that you can run more than just shell commands with it. There are two explicit modes now:
mode=executable where you pass argv with argv[0] representing the executable file and then the rest of the array contains args to it.mode=shell where you pass command_line (just like typing into bash/fish/pwsh/etc) which will use your system's default shell.I hate APIs that make ambigu...